/* ═══════════════════════════════════════════════════════
   Adriana Costa — Minimal Elegant Portfolio
   Pure CSS — No frameworks
   ═══════════════════════════════════════════════════════ */

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

:root {
  --bg: #FAF9F7;
  --bg-alt: #F3F1EE;
  --text: #1A1A18;
  --text-muted: #7A7A72;
  --text-light: #B0AFA8;
  --border: #E0DFD9;
  --border-hover: rgba(26, 26, 24, 0.4);
  --warm: #C8B89A;
  --transition: 0.4s cubic-bezier(0.25, 0.4, 0.25, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --container: 1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 3rem; } }
@media (min-width: 1024px) { .container { padding: 0 4rem; } }

/* Shared */
.section-label { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.section-title { font-family: var(--font-sans); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 300; line-height: 1.2; letter-spacing: -0.02em; }
.section-title em { font-family: var(--font-serif); font-style: italic; font-weight: 300; }
.section-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .section-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.divider { width: 60px; height: 1px; background: var(--text); opacity: 0.25; margin: 2rem 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 1rem 2.5rem; border: 1px solid var(--border-hover); background: transparent; color: var(--text); cursor: pointer; transition: all var(--transition); }
.btn:hover { background: var(--text); color: var(--bg); }
.btn-primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-primary:hover { background: transparent; color: var(--text); }
.btn-outline { border-color: var(--border); }
.btn-outline:hover { border-color: var(--text); }
.btn-ghost { border: none; padding: 1rem 0; }
.btn-ghost:hover { background: transparent; color: var(--text); }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translate(2px, -2px); }

/* ═══ Navigation ═══ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all var(--transition); }
.header.scrolled { background: rgba(250, 249, 247, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(224, 223, 217, 0.5); }
.header.scrolled .nav-link { color: var(--text-muted); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: var(--text); }
.header.scrolled .nav-link::after { background: var(--text); }
.header.scrolled .menu-toggle span { background: var(--text); }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; height: 80px; display: flex; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .header-inner { padding: 0 3rem; } }
@media (min-width: 1024px) { .header-inner { padding: 0 4rem; } }
.logo { display: flex; align-items: center; z-index: 101; }
.logo-img { height: 36px; width: auto; max-width: none !important; object-fit: contain; transition: transform var(--transition), filter var(--transition); filter: invert(1); }
@media (min-width: 768px) { .logo-img { height: 40px; } }
.header.scrolled .logo-img { filter: invert(0); }
.logo:hover .logo-img { transform: scale(1.03); }
.nav { display: none; gap: 2.5rem; }
@media (min-width: 768px) { .nav { display: flex; } }
.nav-link { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); position: relative; transition: color var(--transition); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: #fff; transition: width var(--transition); }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: #fff; transition: all var(--transition); transform-origin: center; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(250, 249, 247, 0.97); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-link { font-size: 1.75rem; font-weight: 300; letter-spacing: 0.04em; transition: color var(--transition); }
.mobile-link:hover { color: var(--text-muted); }

/* ═══ Hero ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-video-wrapper { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 1; max-width: var(--container); width: 100%; margin: 0 auto; padding: 8rem 1.5rem 10rem; }
@media (min-width: 768px) { .hero-content { padding: 8rem 3rem 10rem; } }
@media (min-width: 1024px) { .hero-content { padding: 8rem 4rem 10rem; max-width: 720px; } }
.hero-label { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(3rem, 10vw, 7rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 2rem; color: #fff; }
.hero-title em { font-family: var(--font-serif); font-style: italic; font-weight: 300; }
.hero-desc { color: rgba(255,255,255,0.8); max-width: 440px; line-height: 1.8; font-size: 0.95rem; margin-bottom: 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-actions .btn-primary { background: #fff; color: var(--text); border-color: #fff; }
.hero-actions .btn-primary:hover { background: transparent; color: #fff; }
.hero-actions .btn-ghost { color: #fff; }
.hero-actions .btn-ghost:hover { color: rgba(255,255,255,0.7); }

/* Scroll indicator — direct child of hero, at absolute bottom center */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  transition: opacity 0.5s ease;
}
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }
.scroll-indicator span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: #fff; animation: scrollLine 1.5s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* ═══ Page Hero (sub-pages) ═══ */
.page-hero { padding: 10rem 0 4rem; }
.page-hero-title { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; }
.page-hero-title em { font-family: var(--font-serif); font-style: italic; font-weight: 300; }

/* ═══ Featured (index.html) — UNIFORM 3:2 ratio ═══ */
.featured { padding: 6rem 0; }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .featured-grid { grid-template-columns: repeat(3, 1fr); } }
.featured-item { display: block; transition: transform var(--transition); }
.featured-item:hover { transform: translateY(-4px); }
.featured-img { overflow: hidden; aspect-ratio: 3 / 2; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.featured-item:hover .featured-img img { transform: scale(1.05); }
.featured-info { padding: 1rem 0 0; }
.featured-info h3 { font-size: 0.95rem; font-weight: 400; }
.featured-info p { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ═══ Services Preview (index.html) ═══ */
.services-preview { padding: 6rem 0; background: var(--bg-alt); }
.services-preview-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .services-preview-grid { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; } }
.services-preview-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin: 1.5rem 0 2rem; }
.services-preview-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.service-card { padding: 2rem; border: 1px solid var(--border); transition: all var(--transition); }
.service-card:hover { border-color: var(--text); background: var(--bg); }
.service-card-number { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-muted); display: block; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1.15rem; font-weight: 300; margin-bottom: 0.5rem; transition: transform var(--transition); }
.service-card:hover h3 { transform: translateX(6px); }
.service-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ═══ Blog Preview (index.html) ═══ */
.blog-preview { padding: 6rem 0; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { display: block; transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { overflow: hidden; aspect-ratio: 3 / 2; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem 0 0; }
.blog-card-date { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }
.blog-card-body h3 { font-size: 1rem; font-weight: 400; margin-top: 0.4rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ═══ CTA ═══ */
.cta { padding: 6rem 0; }
.cta-inner { text-align: center; padding: 5rem 2rem; background: var(--bg-alt); }
.cta-inner h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 300; margin-bottom: 1rem; }
.cta-inner h2 em { font-family: var(--font-serif); font-style: italic; }
.cta-inner p { color: var(--text-muted); max-width: 480px; margin: 0 auto 2rem; font-size: 0.95rem; }

/* ═══ About Page ═══ */
.about-section { padding: 4rem 0 6rem; }
.about-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 2fr 3fr; gap: 5rem; align-items: start; } }
.about-image-wrap { position: relative; }
.about-image { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: grayscale(100%); transition: filter 1.2s ease; }
.about-image:hover { filter: grayscale(0%); }
.about-image-border { position: absolute; bottom: -12px; right: -12px; width: 100%; height: 100%; border: 1px solid rgba(26, 26, 24, 0.08); z-index: -1; }
.about-heading { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; line-height: 1.3; margin-bottom: 0.5rem; }
.about-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid var(--border); }
.stat-number { display: block; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 300; letter-spacing: -0.02em; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; display: block; }

/* ═══ Portfolio Gallery (about.html) — UNIFORM 3:2 ═══ */
.portfolio-section { padding: 6rem 0; background: var(--bg-alt); }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-btn { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.55rem 1.1rem; border: 1px solid var(--border); background: transparent; color: var(--text-muted); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover { color: var(--text); border-color: var(--border-hover); }
.filter-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-item { cursor: pointer; transition: transform var(--transition); }
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-item.hidden { display: none; }
.portfolio-img-wrap { overflow: hidden; aspect-ratio: 3 / 2; }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.portfolio-item:hover .portfolio-img-wrap img { transform: scale(1.05); }
.portfolio-item-info { padding: 1rem 0 0; display: flex; align-items: center; justify-content: space-between; }
.portfolio-item-info h3 { font-size: 0.9rem; font-weight: 400; }
.portfolio-item-info p { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }
.portfolio-item-info::after { content: '\2197'; font-size: 0.9rem; color: var(--text-muted); opacity: 0; transform: translate(-4px, 4px); transition: all var(--transition); }
.portfolio-item:hover .portfolio-item-info::after { opacity: 1; transform: translate(0, 0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(26, 26, 24, 0.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--transition); padding: 2rem; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; transition: opacity var(--transition); z-index: 201; }
.lightbox-close:hover { opacity: 0.6; }
.lightbox-content { max-width: 900px; width: 100%; }
.lightbox-content img { width: 100%; max-height: 70vh; object-fit: contain; }
.lightbox-info { padding: 1.5rem 0 0; }
.lightbox-info h3 { color: white; font-weight: 300; font-size: 1.25rem; }
.lightbox-info p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 0.25rem; }

/* ═══ Blog Listing (blog.html) ═══ */
.blog-section { padding: 2rem 0 6rem; }
.blog-list { display: flex; flex-direction: column; }
.blog-list-item { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; border-bottom: 1px solid var(--border); transition: background var(--transition); }
@media (min-width: 768px) { .blog-list-item { grid-template-columns: 280px 1fr; gap: 3rem; } }
@media (min-width: 1024px) { .blog-list-item { grid-template-columns: 360px 1fr; gap: 4rem; } }
.blog-list-item:hover { background: var(--bg-alt); margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; }
.blog-list-img { overflow: hidden; aspect-ratio: 3 / 2; }
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-list-item:hover .blog-list-img img { transform: scale(1.05); }
.blog-list-date { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }
.blog-list-body h2 { font-size: 1.35rem; font-weight: 300; margin: 0.5rem 0 0.75rem; line-height: 1.3; }
.blog-list-body p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-list-read { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 1.25rem; transition: color var(--transition); }
.blog-list-read svg { transition: transform var(--transition); }
.blog-list-item:hover .blog-list-read { color: var(--text); }
.blog-list-item:hover .blog-list-read svg { transform: translateX(4px); }

/* ═══ Blog Post (blog-post.html) ═══ */
.post-hero { padding: 8rem 0 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 2rem; transition: color var(--transition); }
.back-link:hover { color: var(--text); }
.post-meta { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.post-category { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); padding: 0.3rem 0.8rem; }
.post-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 3rem; }
.post-hero-img { width: 100%; max-height: 500px; overflow: hidden; aspect-ratio: 21 / 9; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content { padding: 4rem 0 6rem; }
.post-article { max-width: 720px; margin: 0 auto; }
.post-lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 3rem; font-weight: 300; }
.post-article h2 { font-size: 1.5rem; font-weight: 300; margin: 3rem 0 1.25rem; }
.post-article p { font-size: 0.95rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 1.25rem; }
.post-article blockquote { margin: 3rem 0; padding: 2rem 2.5rem; border-left: 2px solid var(--text); background: var(--bg-alt); }
.post-article blockquote p { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; line-height: 1.7; color: var(--text); margin-bottom: 0.5rem; }
.post-article blockquote cite { font-style: normal; font-size: 0.8rem; color: var(--text-muted); }
.post-tags { display: flex; gap: 0.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.post-tags span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 1rem; border: 1px solid var(--border); color: var(--text-muted); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 720px; margin: 0 auto; padding-top: 4rem; border-top: 1px solid var(--border); }
.post-nav-item { display: block; padding: 1.5rem; border: 1px solid var(--border); transition: all var(--transition); }
.post-nav-item:hover { border-color: var(--text); }
.post-nav-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 0.5rem; }
.post-nav-title { font-size: 0.95rem; font-weight: 400; }
.post-nav-next { text-align: right; }

/* ═══ Services Page (service.html) ═══ */
.services-section { padding: 2rem 0 6rem; }
.service-detail { padding: 4rem 0; border-top: 1px solid var(--border); }
.service-detail:last-child { border-bottom: 1px solid var(--border); }
.service-detail-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3rem; }
.service-number { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--text-muted); }
.service-detail-header h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 300; }
.service-detail-body { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .service-detail-body { grid-template-columns: 1fr 1.5fr; gap: 4rem; } }
.service-detail-img { overflow: hidden; aspect-ratio: 3 / 2; }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1.25rem; }
.service-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.service-list li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text); position: relative; padding-left: 1.25rem; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 1px; background: var(--text); }

/* ═══ Contact Page (contact.html) ═══ */
.contact-section { padding: 2rem 0 6rem; }
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-intro { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; max-width: 460px; margin-bottom: 3rem; }
.contact-methods-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-methods { margin-bottom: 3rem; }
.contact-method { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); transition: all var(--transition); }
.contact-method:hover { padding-left: 0.5rem; }
.contact-method-icon { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-muted); transition: all var(--transition); }
.contact-method:hover .contact-method-icon { background: var(--text); color: var(--bg); border-color: var(--text); }
.contact-method-text { flex: 1; }
.contact-method-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); display: block; }
.contact-method-value { font-size: 0.95rem; display: block; margin-top: 0.15rem; }
.contact-method-arrow { color: var(--text-light); opacity: 0; transform: translate(-4px, 4px); transition: all var(--transition); }
.contact-method:hover .contact-method-arrow { opacity: 1; transform: translate(0, 0); }
.contact-method-static { cursor: default; }
.contact-method-static:hover { padding-left: 0; }
.social-links-row { display: flex; gap: 0.75rem; }
.social-link { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.social-link:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.contact-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-image { overflow: hidden; aspect-ratio: 3 / 4; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-availability { display: flex; align-items: center; gap: 0.75rem; font-size: 0.85rem; color: var(--text-muted); }
.availability-dot { width: 8px; height: 8px; border-radius: 50%; background: #4a7c59; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ═══ Footer ═══ */
.footer { padding: 3rem 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-brand { display: flex; align-items: center; }
.footer-logo { height: 28px; width: auto; max-width: none !important; object-fit: contain; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ═══ Reveal Animations ═══ */
.reveal, .reveal-up, .reveal-left { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal { transform: translateY(20px); }
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-30px); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible { opacity: 1; transform: translate(0, 0); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #999; }
