/* ============================================================
   Globitos Arts — style.css
   Brand: gold (#C9A84C), teal (#3ABFBF), navy (#1A2744)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark:  #A07830;
  --teal:       #3ABFBF;
  --teal-dark:  #2A9090;
  --navy:       #1A2744;
  --navy-light: #243560;
  --pink:       #F7B8C8;
  --pink-soft:  #FDE8EF;
  --lavender:   #D4AADA;
  --white:      #FFFFFF;
  --cream:      #FDF8F0;
  --text-body:  #3D3D3D;
  --text-muted: #7A7A7A;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.16);
  --radius:     16px;
  --radius-sm:  8px;
  --font-display: 'Dancing Script', cursive;
  --font-body:    'Nunito', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ---------- Utility ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 56px;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.3s ease;
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-md);
  animation: slideDown 0.25s ease;
}

.mobile-menu.open {
  display: block;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
}

/* ---------- Hero ---------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse 120% 80% at 50% 40%, rgba(58,191,191,0.07) 0%, rgba(201,168,76,0.05) 50%, rgba(255,255,255,1) 100%),
              linear-gradient(160deg, var(--cream) 0%, #ffffff 60%, rgba(247,184,200,0.12) 100%);
}

/* Watercolor splash */
.hero-watercolor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-watercolor svg {
  width: 100%;
  height: 100%;
}

/* Balloon SVGs */
.balloon {
  position: absolute;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  opacity: 0.18;
}

.balloon svg {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.balloon:nth-child(1) { top: 8%;  left: 4%;  animation-delay: 0s;    animation-duration: 7s; }
.balloon:nth-child(2) { top: 12%; right: 6%; animation-delay: 1.5s;  animation-duration: 8s; }
.balloon:nth-child(3) { bottom: 18%; left: 8%; animation-delay: 0.8s; animation-duration: 6.5s; }
.balloon:nth-child(4) { bottom: 22%; right: 5%; animation-delay: 2s;   animation-duration: 7.5s; }
.balloon:nth-child(5) { top: 40%; left: 2%;  animation-delay: 3s;    animation-duration: 9s; }
.balloon:nth-child(6) { top: 35%; right: 2%; animation-delay: 1s;    animation-duration: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-18px) rotate(2deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 28px;
  border-radius: 50%;
  filter: drop-shadow(0 8px 24px rgba(201,168,76,0.30));
  animation: logoFloat 8s ease-in-out infinite;
}

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

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(26,39,68,0.08);
}

.hero-tagline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  padding: 16px 40px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  border-radius: 50px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.50);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

/* ---------- About ---------- */
#chi-siamo {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#chi-siamo::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text .section-title {
  text-align: left;
}

.about-text .gold-divider {
  margin: 12px 0 0;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-top: 28px;
  line-height: 1.9;
}

.about-text p + p {
  margin-top: 16px;
}

.about-highlight {
  display: inline;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(58,191,191,0.10));
  border-radius: 4px;
  padding: 0 4px;
  font-weight: 600;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-photo-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(201,168,76,0.3);
}

.about-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.about-badge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-badge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-badge-card .icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
  display: block;
}

.about-badge-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-badge-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Gallery ---------- */
#galleria {
  padding: 100px 0;
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,68,0.85) 0%, rgba(26,39,68,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Always show caption on mobile */
@media (hover: none) {
  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(26,39,68,0.75) 0%, transparent 60%);
  }
}

.gallery-caption {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.gallery-caption::before {
  content: '🎈 ';
}

/* Large item spanning 2 cols */
.gallery-item.large {
  grid-column: span 2;
}

/* ---------- Services ---------- */
#servizi {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--cream) 0%, rgba(58,191,191,0.04) 100%);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent);
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scale(1.5);
}

.service-icon {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 20px;
  animation: iconBounce 3s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon { animation-delay: 1s; }
.service-card:nth-child(3) .service-icon { animation-delay: 2s; }

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.gallery-hidden {
  display: none;
}

.gallery-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.gallery-more-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 30px;
  padding: 12px 32px;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.gallery-more-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.service-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  padding: 5px 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-tag:hover {
  background: rgba(201,168,76,0.12);
}

/* ---------- Contact ---------- */
#contatti {
  padding: 100px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.25s ease;
  background: var(--cream);
}

.contact-link:hover {
  transform: translateX(4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.contact-link .link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.link-phone .link-icon  { background: rgba(58,191,191,0.15); }
.link-wa .link-icon     { background: rgba(37,211,102,0.15); }
.link-ig .link-icon     { background: rgba(183,105,201,0.15); }
.link-fb .link-icon     { background: rgba(24,119,242,0.15); }

.contact-link .link-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
}

.contact-link .link-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
}

.link-phone .link-value { color: var(--teal-dark); }
.link-wa .link-value    { color: #1A9C46; }
.link-ig .link-value    { color: #B769C9; }
.link-fb .link-value    { color: #1877F2; }

/* Form */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BBBBBB;
}

.btn-submit {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 15px 44px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(26,39,68,0.25);
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,39,68,0.35);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

/* ---------- Footer ---------- */
#footer {
  background: var(--navy);
  color: var(--cream);
  padding: 60px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  filter: brightness(1.1);
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.75;
}

.footer-social-btn:hover {
  transform: scale(1.15);
  opacity: 1;
}

.footer-social-btn.ig  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social-btn.fb  { background: #1877F2; }

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* ---------- Scroll-to-top ---------- */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}

#scrollTop:hover {
  transform: translateY(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-text .section-title { text-align: center; }
  .about-text .gold-divider  { margin: 12px auto 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .gallery-item.large {
    grid-column: span 2;
  }

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

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

  .contact-form {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large {
    grid-column: span 1;
  }
  .gallery-item {
    height: 280px;
  }
  .gallery-overlay { opacity: 1; }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-tagline { font-size: 2.4rem; }

  .about-badge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .about-badge-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Section fade-in animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
