/* ========================================
   KÜTAHYA ELİT DÖŞEME - STYLE.CSS
   Modern, zarif, sıcak tonlu zanaat estetiği
   ======================================== */

:root {
  --c-bg: #f7f1e6;
  --c-bg-alt: #efe6d4;
  --c-cream: #faf5ec;
  --c-ink: #2a1d12;
  --c-ink-soft: #4a3622;
  --c-muted: #6b5740;
  --c-accent: #8b5e34;
  --c-accent-deep: #6b4421;
  --c-gold: #c9a063;
  --c-gold-light: #e0c089;
  --c-line: #d9c9ad;
  --c-white: #ffffff;
  --c-shadow: rgba(58, 38, 22, 0.12);
  --c-shadow-soft: rgba(58, 38, 22, 0.06);
  --c-whatsapp: #25D366;

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --transition: 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute; top: -40px; left: 8px; padding: 8px 14px;
  background: var(--c-ink); color: var(--c-cream); border-radius: var(--radius-sm);
  z-index: 1000; transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* Typography helpers */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 1px; background: var(--c-accent); transform: translateY(-50%);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--c-accent);
  font-weight: 400;
}

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-muted);
  max-width: 580px;
}

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { padding-left: 32px; padding-right: 32px; }
.section-head--center .eyebrow::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 22px; height: 1px; background: var(--c-accent); transform: translateY(-50%);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-ink);
  color: var(--c-cream);
  box-shadow: 0 8px 24px var(--c-shadow);
}
.btn--primary:hover { background: var(--c-accent-deep); transform: translateY(-2px); box-shadow: 0 12px 28px var(--c-shadow); }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-cream); transform: translateY(-2px); }
.btn--ghost-light {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid var(--c-cream);
}
.btn--ghost-light:hover { background: var(--c-cream); color: var(--c-ink); }
.btn--dark {
  background: var(--c-accent);
  color: var(--c-cream);
  box-shadow: 0 6px 20px rgba(139, 94, 52, 0.35);
}
.btn--dark:hover { background: var(--c-accent-deep); transform: translateY(-2px); }

/* ======================================
   NAVBAR
   ====================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 241, 230, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.nav.is-scrolled {
  background: rgba(247, 241, 230, 0.95);
  border-bottom-color: var(--c-line);
  box-shadow: 0 4px 24px var(--c-shadow-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
  gap: 24px;
}
.nav__brand img { height: 44px; width: auto; }
.nav__links {
  display: flex; gap: 36px;
  font-size: 15px; font-weight: 500;
}
.nav__links a {
  color: var(--c-ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav__links a:hover { color: var(--c-accent); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--c-accent);
  transform: scaleX(0); transform-origin: right; transition: transform var(--transition);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--c-whatsapp);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--c-ink); transition: transform var(--transition), opacity var(--transition); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 29, 18, 0.85) 0%, rgba(42, 29, 18, 0.6) 50%, rgba(139, 94, 52, 0.55) 100%);
}

.hero__content { position: relative; z-index: 1; max-width: 780px; color: var(--c-cream); }
.hero__content .eyebrow { color: var(--c-gold-light); }
.hero__content .eyebrow::before { background: var(--c-gold-light); }

.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 500;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero__title em {
  font-style: italic;
  color: var(--c-gold-light);
  font-weight: 400;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 560px;
  color: rgba(250, 245, 236, 0.9);
  margin-bottom: 36px;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.hero__actions .btn--primary { background: var(--c-gold); color: var(--c-ink); }
.hero__actions .btn--primary:hover { background: var(--c-gold-light); }
.hero__actions .btn--ghost { color: var(--c-cream); border-color: var(--c-cream); }
.hero__actions .btn--ghost:hover { background: var(--c-cream); color: var(--c-ink); }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 14px; color: rgba(250, 245, 236, 0.85);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid rgba(250, 245, 236, 0.5);
  border-radius: 12px;
}
.hero__scroll span {
  display: block; width: 3px; height: 8px; margin: 8px auto;
  background: var(--c-gold-light); border-radius: 2px;
  animation: scrollDown 1.6s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ======================================
   SERVICES
   ====================================== */
.services { padding: 100px 0; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--c-cream);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--c-shadow);
  border-color: var(--c-gold-light);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg-alt);
  color: var(--c-accent);
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--c-accent);
  color: var(--c-cream);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--c-ink);
}
.service-card p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
}

/* ======================================
   ABOUT
   ====================================== */
.about {
  padding: 100px 0;
  background: var(--c-bg-alt);
  position: relative;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__media { position: relative; }
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px var(--c-shadow);
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about__stats {
  position: absolute;
  bottom: -36px; right: -20px;
  background: var(--c-cream);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  box-shadow: 0 16px 36px var(--c-shadow);
  border: 1px solid var(--c-line);
}
.about__stats > div { text-align: center; }
.about__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--c-accent);
  font-weight: 600;
  line-height: 1;
}
.about__stats span {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  display: block;
}

.about__text p { color: var(--c-ink-soft); font-size: 16px; line-height: 1.75; }
.about__list {
  margin: 28px 0 36px;
  display: grid;
  gap: 12px;
}
.about__list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--c-ink-soft);
  font-size: 15px;
}
.about__list span {
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-gold);
  color: var(--c-ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

/* ======================================
   GALLERY
   ====================================== */
.gallery { padding: 100px 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 29, 18, 0.4) 100%);
  opacity: 0; transition: opacity var(--transition);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }

/* ======================================
   PROCESS
   ====================================== */
.process {
  padding: 100px 0;
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 160, 99, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.process .section-title { color: var(--c-cream); }
.process .section-title em { color: var(--c-gold-light); }
.process .eyebrow { color: var(--c-gold-light); }
.process .eyebrow::before, .process .eyebrow::after { background: var(--c-gold-light); }

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__list::before {
  content: "";
  position: absolute;
  top: 28px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold) 20%, var(--c-gold) 80%, transparent);
  opacity: 0.4;
}
.process__list li { position: relative; padding-top: 0; }
.process__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  border: 2px solid var(--c-gold);
}
.process__list h3 {
  font-size: 1.35rem;
  color: var(--c-cream);
  margin-bottom: 10px;
}
.process__list p {
  font-size: 14px;
  color: rgba(250, 245, 236, 0.72);
  margin: 0;
  line-height: 1.6;
}

/* ======================================
   CTA BANNER
   ====================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-deep) 100%);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner .section-title { color: var(--c-cream); margin-bottom: 12px; }
.cta-banner .section-title em { color: var(--c-gold-light); }
.cta-banner p { color: rgba(250, 245, 236, 0.85); font-size: 1.05rem; margin: 0; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.cta-banner .btn--primary { background: var(--c-cream); color: var(--c-ink); }
.cta-banner .btn--primary:hover { background: var(--c-gold-light); }

/* ======================================
   CONTACT
   ====================================== */
.contact { padding: 100px 0; background: var(--c-bg-alt); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact__list {
  display: grid; gap: 22px;
  margin-top: 32px;
}
.contact__list li { display: grid; gap: 4px; }
.contact__list strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  font-weight: 600;
}
.contact__list a, .contact__list span { color: var(--c-ink-soft); font-size: 16px; }
.contact__list a:hover { color: var(--c-accent); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 16px 36px var(--c-shadow);
  border: 1px solid var(--c-line);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 480px; }

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--c-ink);
  color: rgba(250, 245, 236, 0.7);
  padding: 70px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer__brand img { height: 56px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1) sepia(0.3); opacity: 0.9; }
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 18px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a, .footer__col li {
  font-size: 14px;
  color: rgba(250, 245, 236, 0.65);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--c-gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(250, 245, 236, 0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(250, 245, 236, 0.5);
}
.footer__keys { max-width: 60%; text-align: right; }

/* ======================================
   FLOATING BUTTONS
   ====================================== */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--c-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s ease-out infinite;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55); animation: none; }

.float-tel {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 50px; height: 50px;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px var(--c-shadow);
  z-index: 90;
  transition: transform var(--transition), background var(--transition);
}
.float-tel:hover { background: var(--c-accent); transform: scale(1.08); }

@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 960px) {
  .nav__links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--c-cream);
    flex-direction: column;
    padding: 28px var(--gutter);
    gap: 18px;
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-150%);
    transition: transform var(--transition);
    box-shadow: 0 12px 32px var(--c-shadow);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 18px; padding: 8px 0; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .about__inner,
  .contact__inner,
  .cta-banner__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__stats { right: 16px; bottom: -28px; padding: 18px 20px; gap: 16px; }
  .about__stats strong { font-size: 1.5rem; }

  .cta-banner__actions { justify-content: flex-start; }

  .process__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .process__list::before { display: none; }

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

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
  .footer__keys { text-align: left; max-width: 100%; }
}

@media (max-width: 600px) {
  .nav__brand img { height: 38px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero__actions .btn { flex: 1; min-width: 140px; }
  .hero__badges { gap: 12px 18px; }

  .services, .about, .gallery, .process, .contact { padding: 70px 0; }
  .cta-banner { padding: 60px 0; }

  .service-card { padding: 32px 24px; }
  .gallery__grid { grid-template-columns: 1fr; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }

  .float-wa { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .float-wa svg { width: 24px; height: 24px; }
  .float-tel { width: 46px; height: 46px; bottom: 84px; right: 20px; }

  .contact__map, .contact__map iframe { min-height: 360px; }
}

/* Performance: disable backdrop-filter on small screens for better mobile perf */
@media (max-width: 768px) {
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(247, 241, 230, 0.96); }
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
