/* =============================================
   Atom Karıncam — Full Website · Premium Edition
   ============================================= */

/* ---- Design Tokens ---- */

:root {
  --orange:        #e85a1a;
  --orange-bright: #ff6b1a;
  --amber:         #f5a623;
  --golden:        #ffc857;
  --citrus:        #ff8c2a;

  --charcoal:      #181210;
  --charcoal-mid:  #1f1812;
  --charcoal-lift: #261e16;
  --charcoal-card: #2a2018;
  --charcoal-line: rgba(255,255,255,0.055);

  --cream:         #fff8f0;
  --cream-muted:   #b8a898;
  --cream-dim:     rgba(255,248,240,0.45);
  --white:         #ffffff;

  --whatsapp:      #25d366;
  --whatsapp-dark: #1da851;
  --agca-cyan:     rgba(0, 210, 225, 0.5);

  --font: 'Outfit', system-ui, -apple-system, sans-serif;

  --container: 1120px;
  --container-wide: 1280px;

  --r-xs:   8px;
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   26px;
  --r-xl:   36px;
  --r-full: 999px;

  --header-h: 68px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-total-h: calc(var(--header-h) + var(--safe-top));

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s var(--ease-in-out);
  --t-base: 0.28s var(--ease-out);
  --t-slow: 0.45s var(--ease-out);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.28);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.36);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.42);
  --shadow-glow-amber: 0 0 28px rgba(255,200,87,0.12);
  --shadow-glow-orange: 0 0 28px rgba(255,107,26,0.18);
}

/* ---- Reset ---- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-total-h) + 16px);
}

body {
  font-family: var(--font);
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.65rem 1rem;
  border-radius: var(--r-md);
  background: var(--orange-bright);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

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

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

address { font-style: normal; }

/* ---- Layout ---- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

/* ---- Utilities ---- */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--orange-bright);
  border-radius: 2px;
  opacity: 0.7;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-text {
  font-size: 0.98rem;
  color: var(--cream-muted);
  line-height: 1.75;
  max-width: 520px;
}

.section-text--center { margin: 0 auto; text-align: center; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ---- Scroll reveal ---- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER
   ============================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-total-h);
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(24, 18, 16, 0.88);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: var(--charcoal-line);
  box-shadow: 0 1px 0 rgba(255,107,26,0.04), var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */

.logo {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.18em;
  transition: opacity var(--t-fast);
}

.logo span {
  color: var(--orange-bright);
}

.logo:hover { opacity: 0.88; }

/* Nav */

.nav__drawer-label { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream-dim);
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.01em;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav__link--active {
  color: var(--cream);
}

.nav__link--cta {
  padding: 0.42rem 1.1rem;
  background: var(--orange-bright);
  color: var(--white) !important;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 0.5rem;
  box-shadow: 0 2px 12px rgba(255,107,26,0.32);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.nav__link--cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255,107,26,0.4);
}

/* Hamburger */

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  padding: 0;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), border-color var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255,248,240,0.88);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
}

.nav-backdrop { display: none; }

.nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-toggle.is-active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,107,26,0.15);
}

/* =============================================
   BADGE & BUTTONS
   ============================================= */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.32rem 0.8rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-full);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-bright);
  opacity: 0.9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.25rem;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-fast), filter var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}

.btn__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.38);
}

.btn--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(220,39,67,0.28);
}

.btn--instagram:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(220,39,67,0.38);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 12s ease-out;
}

.hero__bg-img.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(108deg,
      rgba(24,18,16,0.88) 0%,
      rgba(24,18,16,0.55) 32%,
      rgba(24,18,16,0.12) 58%,
      transparent 76%),
    linear-gradient(to top, rgba(24,18,16,0.6) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(24,18,16,0.35) 0%, transparent 15%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 500px;
  padding:
    calc(var(--header-total-h) + 3rem)
    2rem
    6rem
    max(2rem, calc((100% - var(--container)) / 2 + 2rem));
  margin-right: auto;
  animation: heroEnter 0.95s var(--ease-out) both;
  animation-delay: 0.1s;
}

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.04;
  color: var(--white);
  margin: 1rem 0 0.8rem;
  letter-spacing: -0.03em;
}

.hero__title-accent {
  background: linear-gradient(130deg, var(--golden) 0%, var(--orange-bright) 55%, var(--citrus) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255,248,240,0.72);
  max-width: 340px;
  margin-bottom: 2rem;
  line-height: 1.65;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Scroll indicator */

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: max(2rem, calc((100% - var(--container)) / 2 + 2rem));
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  animation: heroEnter 1.1s var(--ease-out) both;
  animation-delay: 0.5s;
}

.hero__scroll-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cream-dim);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleX(1);    }
  50%       { opacity: 1;   transform: scaleX(1.25); }
}

/* =============================================
   ABOUT
   ============================================= */

.about {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at 20% 90%, rgba(255,107,26,0.045) 0%, transparent 65%);
  pointer-events: none;
}

.about__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Visual side — branded slider */

.about__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__visual::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -1px;
  width: 3px;
  height: 35%;
  border-radius: 2px;
  background: linear-gradient(to bottom, transparent, var(--orange-bright), transparent);
  z-index: 4;
  opacity: 0.6;
  pointer-events: none;
}

.about-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--charcoal-lift);
  user-select: none;
  -webkit-user-select: none;
}

.about-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s var(--ease-out);
  pointer-events: none;
}

.about-slider__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.about-slider__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 6s var(--ease-out);
}

.about-slider__slide.is-active img {
  transform: scale(1);
}

.about-slider__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(24,18,16,0.18) 0%,
    transparent 42%,
    rgba(255,107,26,0.05) 100%
  );
  pointer-events: none;
}

.about-slider__nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.65rem;
  pointer-events: none;
}

.about-slider__arrow {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(24,18,16,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,248,240,0.88);
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--t-fast), background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}

.about-slider__arrow svg {
  width: 16px;
  height: 16px;
}

.about-slider:hover .about-slider__arrow,
.about-slider:focus-within .about-slider__arrow {
  opacity: 1;
  transform: translateY(0);
}

.about-slider__arrow:hover {
  background: rgba(24,18,16,0.65);
  border-color: rgba(255,107,26,0.35);
  color: var(--white);
}

.about-slider__dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: var(--r-full);
  background: rgba(24,18,16,0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
}

.about-slider__dot {
  width: 5px;
  height: 5px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,248,240,0.28);
  cursor: pointer;
  transition: width var(--t-fast), background var(--t-fast), opacity var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}

.about-slider__dot.is-active {
  width: 18px;
  border-radius: var(--r-full);
  background: var(--orange-bright);
}

.about-slider__dot:hover {
  background: rgba(255,248,240,0.55);
}

.about-slider__dot.is-active:hover {
  background: var(--golden);
}

/* Content side */

.about__content {
  max-width: 460px;
}

.about__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.about__title-accent {
  background: linear-gradient(130deg, var(--golden), var(--orange-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__lead {
  font-size: 1.06rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  font-weight: 400;
}

.about__text {
  font-size: 0.93rem;
  color: var(--cream-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.about__tags li {
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,200,87,0.8);
  border: 1px solid rgba(255,200,87,0.18);
  background: rgba(255,200,87,0.05);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.about__tags li:hover {
  background: rgba(255,200,87,0.1);
  border-color: rgba(255,200,87,0.35);
  color: var(--golden);
}

/* =============================================
   MENU / LEZZETLERİMİZ
   ============================================= */

.menu {
  background: var(--charcoal-mid);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--charcoal-line) 30%, var(--charcoal-line) 70%, transparent);
}

/* Tabs */

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 3rem;
}

.menu-nav__btn {
  padding: 0.48rem 1.15rem;
  border-radius: var(--r-full);
  border: 1px solid var(--charcoal-line);
  background: transparent;
  color: var(--cream-muted);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}

.menu-nav__btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.14);
}

.menu-nav__btn--active {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,107,26,0.3);
}

/* Menu grid */

.menu-body { min-height: 280px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

.menu-grid--enter {
  animation: menuEnter 0.38s var(--ease-out) both;
}

@keyframes menuEnter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Cards */

.menu-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-md);
  background: var(--charcoal-card);
  border: 1px solid var(--charcoal-line);
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  -webkit-tap-highlight-color: transparent;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,26,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,107,26,0.06);
}

.menu-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--charcoal-lift);
}

.menu-card__image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}

.menu-card:hover .menu-card__image {
  transform: scale(1.06);
}

/* Image scrim for better badge legibility */

.menu-card__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,18,16,0.55) 0%, transparent 45%);
  pointer-events: none;
}

/* Badge */

.menu-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-full);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.menu-card__badge--populer {
  background: rgba(255,107,26,0.9);
  box-shadow: 0 2px 8px rgba(255,107,26,0.35);
}

.menu-card__badge--yeni {
  background: rgba(37,211,102,0.9);
  box-shadow: 0 2px 8px rgba(37,211,102,0.35);
}

/* Card body */

.menu-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
  gap: 0.3rem;
}

.menu-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  margin-bottom: 0.15rem;
}

.menu-card__name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.menu-card__price {
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--golden);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.menu-card__desc {
  font-size: 0.8rem;
  color: var(--cream-muted);
  line-height: 1.55;
}

/* =============================================
   CONTACT / İLETİŞİM
   ============================================= */

.contact {
  background: var(--charcoal);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--charcoal-line) 30%, var(--charcoal-line) 70%, transparent);
}

.contact__header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: stretch;
}

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

/* Address block */

.contact__block {
  padding: 1.65rem 1.75rem;
  border-radius: var(--r-md);
  background: var(--charcoal-lift);
  border: 1px solid var(--charcoal-line);
  flex-shrink: 0;
}

.contact__block-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.85rem;
  opacity: 0.85;
}

.contact__address {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  transition: color var(--t-fast), gap var(--t-fast);
}

.contact__map-link:hover {
  color: var(--golden);
  gap: 0.55rem;
}

.contact__map-link::after {
  content: '→';
  font-size: 0.85em;
}

/* Social channels */

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--charcoal-lift);
  border: 1px solid var(--charcoal-line);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-base);
  cursor: pointer;
}

.contact__channel:hover {
  background: var(--charcoal-card);
  border-color: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.contact__channel-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
}

.contact__channel-icon svg { width: 18px; height: 18px; }

.contact__channel--wa .contact__channel-icon {
  background: rgba(37,211,102,0.12);
  color: var(--whatsapp);
}

.contact__channel--ig .contact__channel-icon {
  background: rgba(225,48,108,0.12);
  color: #e1306c;
}

.contact__channel-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.contact__channel-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.38);
}

.contact__channel-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* Map */

.contact__map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--charcoal-line);
  min-height: 380px;
  background: var(--charcoal-lift);
  box-shadow: var(--shadow-md);
}

.contact__map {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.04) brightness(0.82);
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal-line);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
}

.footer__logo {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  opacity: 0.75;
  transition: opacity var(--t-fast);
}

.footer__logo:hover { opacity: 1; }

.footer__social { display: flex; gap: 1.5rem; }

.footer__social a {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--cream-muted);
  opacity: 0.65;
  transition: opacity var(--t-fast), color var(--t-fast);
}

.footer__social a:hover {
  color: var(--orange-bright);
  opacity: 1;
}

.footer__credit {
  padding: 0.4rem 1rem max(0.6rem, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(8,10,14,0.45) 0%, transparent 100%);
  border-top: 1px solid rgba(0,229,255,0.04);
}

.footer__credit p {
  text-align: center;
  font-size: 0.54rem;
  color: rgba(190,200,210,0.28);
}

.footer__credit a {
  color: var(--agca-cyan);
  font-weight: 500;
  transition: color var(--t-fast);
}

.footer__credit a:hover { color: rgba(0,229,255,0.7); }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */

.floating-wa {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px) + 0.85rem);
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px) + 0.85rem);
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(145deg, #2dda6e 0%, #1da851 100%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 8px 24px rgba(0,30,12,0.38),
    0 0 0 1px rgba(18,117,56,0.2);
  transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-fast);
  animation: floatWaIn 0.5s var(--ease-out) 0.8s both;
}

.floating-wa__icon {
  width: 26px;
  height: 26px;
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.04);
  filter: saturate(1.1);
  box-shadow:
    0 14px 32px rgba(0,30,12,0.46),
    0 0 0 1px rgba(18,117,56,0.3);
}

.floating-wa:focus-visible {
  outline: none;
  box-shadow:
    0 8px 24px rgba(0,30,12,0.38),
    0 0 0 3px rgba(255,248,240,0.45);
}

@keyframes floatWaIn {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* =============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================= */

@media (max-width: 1024px) {
  .container { padding: 0 1.75rem; }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__content { max-width: 100%; }

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

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

/* =============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================= */

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  .section { padding: 4.5rem 0; }

  /* --- Mobile nav drawer --- */

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 185;
    background: rgba(8, 6, 5, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s var(--ease-out);
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 190;
    top: 0;
    right: 0;
    left: auto;
    width: min(300px, 86vw);
    height: 100%;
    height: 100dvh;
    background: linear-gradient(165deg, #1c1612 0%, #14100e 100%);
    border-left: 1px solid rgba(255,255,255,0.06);
    box-shadow: -12px 0 48px rgba(0,0,0,0.45);
    padding:
      calc(var(--header-total-h) + 1.25rem)
      1.75rem
      calc(1.75rem + var(--safe-bottom))
      1.75rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(102%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.38s var(--ease-out);
  }

  .nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav__drawer-label {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,248,240,0.32);
    margin-bottom: 1.5rem;
    padding-left: 0.15rem;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav__list li {
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  }

  .nav.is-open .nav__list li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.is-open .nav__list li:nth-child(1) { transition-delay: 0.06s; }
  .nav.is-open .nav__list li:nth-child(2) { transition-delay: 0.1s; }
  .nav.is-open .nav__list li:nth-child(3) { transition-delay: 0.14s; }
  .nav.is-open .nav__list li:nth-child(4) { transition-delay: 0.18s; }

  .nav:not(.is-open) .nav__list li {
    opacity: 0;
    transform: translateX(10px);
    transition-delay: 0s !important;
  }

  .nav__link {
    position: relative;
    display: block;
    font-size: 1.22rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
    padding: 0.95rem 0 0.95rem 0.15rem;
    color: rgba(255,248,240,0.62);
    width: 100%;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.045);
    transition: color 0.22s var(--ease-out), padding-left 0.22s var(--ease-out);
  }

  .nav__link:hover {
    background: transparent;
    color: rgba(255,248,240,0.92);
    padding-left: 0.35rem;
  }

  .nav__link.nav__link--active {
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.045);
    padding-left: 0.65rem;
  }

  .nav__link.nav__link--active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 1.1rem;
    background: var(--orange-bright);
    border-radius: 1px;
    opacity: 0.85;
  }

  .nav__item-cta {
    margin-top: 0.75rem;
    padding-top: 0.5rem;
  }

  .nav__item-cta .nav__link {
    border-bottom: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--orange-bright);
    padding: 0.85rem 0 0.85rem 0.15rem;
    opacity: 0.9;
  }

  .nav__item-cta .nav__link:hover {
    color: var(--golden);
    padding-left: 0.35rem;
  }

  .nav__item-cta .nav__link.nav__link--active::before {
    display: none;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0;
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
    font-size: inherit;
    transform: none !important;
  }

  .nav__link--cta:hover {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .nav-toggle { display: flex; }

  .header--menu-open {
    background: rgba(24, 18, 16, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--charcoal-line);
  }

  /* --- Hero --- */

  .hero { align-items: flex-start; }

  .hero__bg-img { object-position: 65% top; }

  .hero__overlay {
    background:
      linear-gradient(150deg, rgba(24,18,16,0.78) 0%, rgba(24,18,16,0.32) 40%, transparent 60%),
      linear-gradient(to top, rgba(24,18,16,0.55) 0%, transparent 30%);
  }

  .hero__content {
    max-width: min(72%, 300px);
    padding:
      calc(var(--header-total-h) + 1.5rem)
      1rem
      5rem
      max(1.25rem, env(safe-area-inset-left, 0px));
    margin-left: 0;
  }

  .hero__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
    letter-spacing: -0.025em;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    max-width: 24ch;
    margin-bottom: 1.35rem;
    color: rgba(255,248,240,0.82);
  }

  .badge {
    padding: 0.26rem 0.65rem;
    font-size: 0.6rem;
  }

  .hero__cta { flex-direction: column; align-items: flex-start; gap: 0.45rem; }

  .hero__cta .btn { padding: 0.52rem 0.9rem; font-size: 0.76rem; }

  .hero__scroll { display: none; }

  /* --- About --- */

  .about__layout { gap: 2.25rem; }

  .about__visual {
    order: -1;
    border-radius: var(--r-lg);
  }

  .about__visual::before { display: none; }

  .about-slider__arrow {
    opacity: 1;
    transform: none;
    width: 32px;
    height: 32px;
  }

  .about-slider__dots {
    bottom: 0.7rem;
    gap: 0.35rem;
  }

  .about__title { font-size: 1.7rem; }

  .about__lead { font-size: 0.96rem; }

  .about__text { margin-bottom: 1.25rem; }

  /* --- Menu --- */

  .menu-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1.25rem 2.5rem;
    padding: 0 1.25rem 0.5rem;
    gap: 0.35rem;
  }

  .menu-nav::-webkit-scrollbar { display: none; }

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

  .menu-body { min-height: 240px; }

  /* --- Contact --- */

  .contact__header { margin-bottom: 2.5rem; }

  .contact__map-wrap,
  .contact__map { min-height: 280px; }

  /* --- Footer --- */

  .footer__inner {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  /* --- Floating WA --- */

  .floating-wa {
    width: 50px;
    height: 50px;
    right: max(0.85rem, env(safe-area-inset-right, 0px) + 0.65rem);
    bottom: max(1rem, env(safe-area-inset-bottom, 0px) + 1rem);
  }

  .floating-wa__icon { width: 23px; height: 23px; }
}

/* =============================================
   RESPONSIVE — Small (≤400px)
   ============================================= */

@media (max-width: 400px) {
  .hero__content { max-width: min(78%, 280px); }
  .hero__title { font-size: 1.42rem; }

  .floating-wa { width: 48px; height: 48px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .menu-grid--enter { animation: none; }
  .hero__scroll-line { animation: none; }

  .nav.is-open .nav__list li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-slider__slide img {
    transform: none;
    transition: none;
  }
}
