/* ============================================================
   DamlaPetsLife Petshop — style.css
   Palet: çam yeşili / yaprak / bal amber / yeşilimsi kağıt
   Tipografi: Fredoka (başlık) + Nunito (gövde)
   ============================================================ */

:root {
  --pine: #1E4032;
  --pine-deep: #142B22;
  --leaf: #3F7D4E;
  --leaf-soft: #DCE8D5;
  --honey: #E8A13D;
  --honey-deep: #C97F1B;
  --paper: #F3F4EC;
  --surface: #FFFFFF;
  --ink: #22301F;
  --muted: #5C6B57;
  --line: #DFE3D2;
  --wa: #25D366;
  --shadow: 0 10px 30px rgba(30, 64, 50, 0.10);
  --radius: 18px;
  --font-display: 'Fredoka', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

[data-theme="dark"] {
  --pine: #2E5C46;
  --leaf: #6FAE7E;
  --leaf-soft: #1C2E22;
  --honey: #E8A13D;
  --honey-deep: #F0B35C;
  --paper: #101B14;
  --surface: #18261C;
  --ink: #E8EDE3;
  --muted: #9FB29A;
  --line: #27392C;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color .3s ease, color .3s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

section { padding: 90px 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 12px;
}

.eyebrow-light { color: var(--honey); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }

.section-sub { color: var(--muted); margin-top: 14px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  padding: 13px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background-color: var(--pine);
  color: #F3F4EC;
  box-shadow: 0 6px 18px rgba(30, 64, 50, 0.25);
}

.btn-primary:hover { background-color: var(--leaf); }

.btn-outline {
  border-color: var(--pine);
  color: var(--pine);
  background: transparent;
}

[data-theme="dark"] .btn-outline { border-color: var(--leaf); color: var(--leaf); }

.btn-outline:hover { background-color: var(--pine); color: #F3F4EC; }

.btn-honey {
  background-color: var(--honey);
  color: #2B1D06;
  box-shadow: 0 6px 18px rgba(232, 161, 61, 0.35);
}

.btn-honey:hover { background-color: var(--honey-deep); color: #2B1D06; }

.btn-wa {
  background-color: var(--wa);
  color: #fff;
  font-size: .92rem;
  padding: 10px 22px;
}

.btn-wa:hover { background-color: #1EBE5A; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}

.site-header.scrolled {
  background-color: var(--surface);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 42px; height: 42px; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
}

.logo-text span { color: var(--leaf); }

.main-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
}

.main-nav a {
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--leaf); border-color: var(--honey); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta { padding: 10px 22px; font-size: .92rem; }

.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  transition: transform .2s ease;
}

.theme-toggle:hover { transform: rotate(15deg); }

[data-theme="light"] .theme-icon-sun { display: none; }
[data-theme="dark"] .theme-icon-moon { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

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

/* ---------- Hero ---------- */

.hero {
  padding: 170px 0 70px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, var(--leaf-soft) 0%, transparent 70%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--leaf);
  position: relative;
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 8px;
  background: var(--honey);
  border-radius: 999px;
  opacity: .55;
}

.hero-text {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-stars {
  color: var(--honey);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-rating p { color: var(--muted); font-size: .95rem; }
.hero-rating strong { color: var(--ink); }

.hero-visual { position: relative; }

.hero-img-wrap {
  border-radius: 46% 54% 52% 48% / 44% 46% 54% 56%;
  overflow: hidden;
  aspect-ratio: 1 / 0.92;
  box-shadow: var(--shadow);
  border: 6px solid var(--surface);
}

.hero-img-wrap img,
.hero-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Parallax: video blob içinde hafifçe büyütülür, kaydırdıkça kayar */
.hero-img-wrap video {
  transform: scale(1.18);
  will-change: transform;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -18px;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 4.5s ease-in-out infinite;
}

.hero-badge-icon { font-size: 1.6rem; }

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
}

.hero-badge span:not(.hero-badge-icon) {
  font-size: .82rem;
  color: var(--muted);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Marquee ---------- */

.marquee {
  background-color: var(--pine);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: #F3F4EC;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Highlights ---------- */

.highlights { padding: 70px 0; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.highlight-item {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.highlight-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.highlight-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--leaf-soft);
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.highlight-item h3 { font-size: 1.12rem; margin-bottom: 8px; }
.highlight-item p { color: var(--muted); font-size: .92rem; }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images { position: relative; }

.about-img-main {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  width: 85%;
}

.about-img-sub {
  position: absolute;
  right: 0;
  bottom: -36px;
  width: 46%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}

.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 18px; }
.about-content p { color: var(--muted); margin-bottom: 14px; }

.about-list {
  list-style: none;
  margin: 20px 0 28px;
}

.about-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-list li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}

/* ---------- Products: pet-tag cards (imza öğesi) ---------- */

.products {
  background:
    radial-gradient(ellipse 50% 40% at 10% 90%, var(--leaf-soft) 0%, transparent 70%),
    var(--paper);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
  padding-top: 16px;
}

.tag-card {
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px 24px var(--radius) var(--radius);
  padding-top: 26px;
  box-shadow: var(--shadow);
  transform-origin: top center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.tag-card:hover {
  transform: rotate(1.6deg) translateY(-4px);
  box-shadow: 0 18px 40px rgba(30, 64, 50, 0.18);
}

.tag-card:nth-child(even):hover { transform: rotate(-1.6deg) translateY(-4px); }

/* künye deliği + halka */
.tag-ring {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 5px solid var(--honey);
  background-color: var(--paper);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15);
}

.tag-ring::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background-color: var(--paper);
  border: 1px solid var(--line);
}

.tag-img {
  margin: 0 18px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.tag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.tag-card:hover .tag-img img { transform: scale(1.06); }

.tag-body { padding: 20px 24px 26px; text-align: center; }

.tag-body h3 { font-size: 1.25rem; margin-bottom: 10px; }

.tag-body p {
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 18px;
  min-height: 3.6em;
}

/* ---------- Pickup band ---------- */

.pickup {
  background-color: var(--pine);
  padding: 80px 0;
}

[data-theme="dark"] .pickup { background-color: #163024; }

.pickup-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}

.pickup-icon {
  font-size: 4rem;
  background-color: rgba(243, 244, 236, .12);
  border-radius: 24px;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
}

.pickup-content h2 {
  color: #F3F4EC;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.pickup-content p {
  color: rgba(243, 244, 236, .82);
  max-width: 560px;
}

.pickup-hours {
  margin-top: 16px;
}

.pickup-hours span {
  display: inline-block;
  background-color: rgba(232, 161, 61, .18);
  color: var(--honey);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  padding: 8px 18px;
  border-radius: 999px;
}

/* ---------- Gallery ---------- */

.gallery { padding-bottom: 0; }

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.05);
}

/* ---------- Reviews ---------- */

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.review-card > p {
  color: var(--muted);
  font-size: .97rem;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--leaf);
  color: #F3F4EC;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

.review-author strong { display: block; font-size: .98rem; }
.review-author span { font-size: .84rem; color: var(--muted); }

.review-score {
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--leaf-soft);
  border-color: transparent;
}

.review-score-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  color: var(--pine);
  line-height: 1;
}

[data-theme="dark"] .review-score-num { color: var(--leaf); }

.review-score p { flex: 0; }

.review-google {
  font-weight: 800;
  letter-spacing: .3em;
  font-size: .8rem;
  color: var(--muted);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 43, 34, .92) 0%, rgba(30, 64, 50, .72) 60%, rgba(30, 64, 50, .45) 100%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 620px;
}

.cta-content h2 {
  color: #F3F4EC;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-content p {
  color: rgba(243, 244, 236, .85);
  margin-bottom: 26px;
}

/* ---------- Contact ---------- */

.contact { padding-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 70px;
}

.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 14px; }

.info-list {
  list-style: none;
  margin: 28px 0;
}

.info-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background-color: var(--leaf-soft);
  border-radius: 12px;
  font-size: 1.2rem;
}

.info-list strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.info-list p, .info-list a {
  color: var(--muted);
  font-size: .95rem;
  text-decoration: none;
}

.info-list a:hover { color: var(--leaf); }

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
  font-size: .8rem;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.social-links a:hover {
  background-color: var(--pine);
  color: #F3F4EC;
  transform: translateY(-3px);
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(63, 125, 78, .18);
}

.form-note {
  margin-top: 14px;
  color: var(--leaf);
  font-weight: 700;
  font-size: .92rem;
}

.map-wrap {
  height: 420px;
  filter: grayscale(20%);
}

/* ---------- Footer ---------- */

.site-footer {
  background-color: var(--pine);
  color: rgba(243, 244, 236, .85);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-brand .logo-text { color: #F3F4EC; }
.footer-brand .logo-text span { color: var(--honey); }
.footer-brand p { margin-top: 14px; font-size: .93rem; }

.site-footer h4 {
  color: #F3F4EC;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.footer-links ul { list-style: none; }

.footer-links a {
  color: rgba(243, 244, 236, .8);
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  font-size: .93rem;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover { color: var(--honey); transform: translateX(4px); }

.footer-hours p { font-size: .93rem; }

.footer-bottom {
  border-top: 1px solid rgba(243, 244, 236, .15);
  text-align: center;
  padding: 20px 0;
  font-size: .88rem;
}

/* ---------- Floating buttons ---------- */

.wa-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .2s ease;
}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

#back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background-color: var(--pine);
  color: #F3F4EC;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover { background-color: var(--leaf); }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ---------- Accessibility ---------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-badge { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .tag-grid { grid-template-columns: repeat(2, 1fr); }
  .review-track { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .pickup-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background-color: var(--surface);
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    padding: 100px 36px 40px;
    transition: right .35s ease;
  }

  .main-nav.open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    gap: 18px;
  }

  .main-nav a { font-size: 1.1rem; }

  .nav-toggle { display: flex; z-index: 110; }

  .header-cta { display: none; }

  .hero { padding-top: 130px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { max-width: 420px; margin-inline: auto; }

  .hero-badge { left: 0; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images { max-width: 460px; }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }

  .highlights-grid { grid-template-columns: 1fr; }
  .tag-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .hero h1 { font-size: 2.1rem; }

  .hero-buttons .btn { width: 100%; text-align: center; }

  .wa-float { left: 16px; bottom: 16px; }
  #back-to-top { right: 16px; bottom: 16px; }
}
