:root {
  --bg: #f7f2ed;
  --surface: #fffaf6;
  --ink: #191313;
  --muted: #716767;
  --red: #c50924;
  --red-dark: #8e0014;
  --red-soft: #efced2;
  --line: rgba(25, 19, 19, .13);
  --white: #fff;
  --dark: #160c0e;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(80, 0, 12, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: var(--white); }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.skip-link { position: fixed; top: 12px; left: 12px; transform: translateY(-150%); z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(247, 242, 237, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(35, 0, 5, .08); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; background: var(--red); color: #fff;
  font-size: 14px; letter-spacing: .06em; box-shadow: 0 8px 20px rgba(197, 9, 36, .24);
}
.brand-text { font-size: 17px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--red); transition: .25s; }
.main-nav a:hover::after { width: 100%; }
.nav-cta { padding: 11px 19px; border-radius: 999px; background: var(--ink); color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--ink); padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 150px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 78px; position: relative; z-index: 2; }
.hero-copy h1 { margin: 15px 0 22px; font-size: clamp(48px, 6.1vw, 88px); line-height: .98; letter-spacing: -.065em; max-width: 760px; }
.hero-copy h1 span { color: var(--red); font-style: italic; font-family: Georgia, serif; font-weight: 500; }
.eyebrow { margin: 0; color: var(--red); font-size: 12px; letter-spacing: .22em; font-weight: 900; text-transform: uppercase; }
.hero-lead { max-width: 660px; margin: 0; color: var(--muted); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .25s, box-shadow .25s, background .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 34px rgba(197, 9, 36, .24); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 18px 44px rgba(197, 9, 36, .32); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.45); }
.btn-light { background: #fff; color: var(--red-dark); }
.btn-full { width: 100%; border: 0; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-tags span, .about-pill-row span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 800; background: rgba(255,255,255,.45); }
.hero-visual { position: relative; }
.portrait-frame { position: relative; width: min(100%, 500px); margin-left: auto; border-radius: 260px 260px 36px 36px; padding: 12px; background: linear-gradient(145deg, #fff, #e7b8be); box-shadow: var(--shadow); }
.portrait-frame > img { width: 100%; aspect-ratio: .69; object-fit: cover; object-position: center 23%; border-radius: 250px 250px 28px 28px; }
.portrait-frame::after { content: ""; position: absolute; inset: 28px -18px -18px 28px; border: 1px solid rgba(197, 9, 36, .3); border-radius: inherit; z-index: -1; }
.portrait-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 16px; background: rgba(255,255,255,.89); backdrop-filter: blur(14px); box-shadow: 0 18px 42px rgba(40,0,5,.14); }
.portrait-card strong, .portrait-card small { display: block; }
.portrait-card strong { font-size: 13px; }
.portrait-card small { color: var(--muted); font-size: 11px; }
.card-top { top: 20%; left: -62px; }
.card-bottom { bottom: 38px; right: -40px; display: block; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #20b86d; box-shadow: 0 0 0 5px rgba(32,184,109,.14); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 440px; height: 440px; background: rgba(197,9,36,.09); right: 4%; top: 12%; }
.hero-glow-two { width: 280px; height: 280px; border: 1px solid rgba(197,9,36,.15); left: -7%; bottom: -3%; }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; animation: marquee 30s linear infinite; font-size: 13px; font-weight: 900; letter-spacing: .14em; }
.marquee-track i { color: var(--red); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; max-height: 700px; object-fit: cover; object-position: center 26%; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-image::before { content: ""; position: absolute; width: 72%; height: 84%; left: -24px; bottom: -24px; border-radius: var(--radius); background: var(--red); z-index: -1; }
.image-label { position: absolute; right: -24px; bottom: 40px; padding: 13px 18px; border-radius: 999px; background: #fff; font-weight: 900; box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.about-copy h2, .section-heading h2, .tech-copy h2, .podcast-copy h2, .contact-copy h2 { margin: 12px 0 24px; font-size: clamp(36px, 4.6vw, 62px); line-height: 1.05; letter-spacing: -.045em; }
.about-copy p, .tech-copy p, .podcast-copy p, .contact-copy p { color: var(--muted); font-size: 17px; }
.about-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.section-dark { background: var(--dark); color: #fff; }
.section-dark .eyebrow { color: #ff5570; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; align-items: end; gap: 70px; margin-bottom: 54px; }
.section-heading p:last-child { color: var(--muted); margin: 0 0 10px; }
.section-dark .section-heading p:last-child { color: rgba(255,255,255,.62); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 260px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.035); overflow: hidden; transition: .3s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(255,85,112,.6); background: rgba(197,9,36,.13); }
.service-no { color: #ff5570; font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.service-card h3 { margin: 45px 0 12px; font-size: 23px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.card-line { position: absolute; left: 30px; right: 30px; bottom: 24px; height: 1px; background: linear-gradient(90deg, #ff5570, transparent); }

.tech-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.text-link { display: inline-flex; gap: 8px; margin-top: 18px; color: var(--red); font-weight: 900; }
.skill-cloud { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 20px 70px rgba(70,0,10,.08); }
.skill-cloud span { padding: 14px 19px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 800; font-size: 14px; transition: .25s; }
.skill-cloud span:hover { transform: translateY(-3px); border-color: var(--red); color: var(--red); }
.skill-cloud .skill-big { padding: 17px 24px; background: var(--red); color: #fff; border-color: var(--red); font-size: 17px; }
.skill-cloud .skill-big:hover { color: #fff; }

.podcast { background: linear-gradient(180deg, var(--bg), #ead6d7); }
.podcast-shell { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; padding: 58px; color: #fff; background: linear-gradient(135deg, #a00018, #d21431 62%, #850010); border-radius: 36px; overflow: hidden; box-shadow: 0 30px 100px rgba(128,0,20,.28); }
.podcast-shell::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -230px; border-radius: 50%; border: 80px solid rgba(255,255,255,.07); }
.podcast-gallery { position: relative; min-height: 520px; }
.podcast-main, .podcast-small { position: absolute; object-fit: cover; border: 8px solid rgba(255,255,255,.94); box-shadow: 0 25px 60px rgba(30,0,5,.35); }
.podcast-main { width: 62%; height: 88%; left: 0; bottom: 0; border-radius: 160px 160px 24px 24px; object-position: center 22%; }
.podcast-small { width: 48%; height: 67%; right: 0; top: 0; border-radius: 24px; object-position: center 25%; transform: rotate(4deg); }
.podcast-copy { position: relative; z-index: 2; }
.podcast-copy .eyebrow { color: #ffd0d7; }
.podcast-copy p { color: rgba(255,255,255,.76); }
.podcast-status { display: flex; align-items: center; gap: 14px; padding: 16px 0 28px; }
.podcast-status strong, .podcast-status small { display: block; }
.podcast-status small { color: rgba(255,255,255,.68); }
.pulse { width: 12px; height: 12px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 11px rgba(255,255,255,0); } }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 390px 270px; gap: 18px; }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: #ddd; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-wide { grid-row: 1 / 3; }
.gallery-wide img { object-position: center 19%; }
.gallery-tall img { object-position: center 21%; }
.gallery-quote { display: flex; flex-direction: column; justify-content: center; padding: 34px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.gallery-quote blockquote { margin: 0 0 18px; font-family: Georgia, serif; font-size: 23px; line-height: 1.35; }
.gallery-quote span { color: #ff8194; font-weight: 800; }

.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 82px; align-items: start; }
.contact-domain { margin-top: 30px; padding: 22px 0; border-block: 1px solid var(--line); }
.contact-domain span, .contact-domain strong { display: block; }
.contact-domain span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; }
.contact-domain strong { color: var(--red); font-size: 26px; }
.contact-note { font-size: 13px !important; }
.contact-note a { color: var(--red); font-weight: 900; }
.contact-panel { display: grid; gap: 14px; padding: 24px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); }
.contact-card { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 16px; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); transition: transform .25s, border-color .25s, box-shadow .25s; }
.contact-card:hover { transform: translateY(-3px); border-color: rgba(197,9,36,.45); box-shadow: 0 16px 40px rgba(80,0,12,.09); }
.contact-card span:nth-child(2) { min-width: 0; }
.contact-card small, .contact-card strong { display: block; }
.contact-card small { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { margin-top: 2px; font-size: 19px; overflow-wrap: anywhere; }
.contact-card b { color: var(--red); font-size: 23px; }
.contact-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--red); color: #fff; font-size: 13px; font-weight: 950; letter-spacing: -.02em; }
.contact-form { padding: 32px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 850; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 7px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--ink); outline: none; transition: .2s; }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(197,9,36,.09); }
.privacy-note { display: block; margin-top: 12px; color: var(--muted); text-align: center; }
.honeypot { position: absolute; left: -9999px; }
.form-message { margin-bottom: 18px; padding: 13px 15px; border-radius: 12px; font-weight: 800; font-size: 14px; }
.form-message.success { background: #dff8e9; color: #0a6a37; }
.form-message.error { background: #ffe1e5; color: #8d0015; }

.site-footer { padding: 42px 0; background: var(--dark); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-brand { margin-bottom: 10px; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; font-weight: 800; }
.copyright { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.whatsapp-float { position: fixed; right: 20px; bottom: 78px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: #1fa855; color: #fff; font-size: 13px; font-weight: 950; box-shadow: 0 12px 30px rgba(31,168,85,.3); z-index: 900; }
.whatsapp-float:hover { transform: translateY(-2px); }
.to-top { position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--red); color: #fff; font-size: 20px; box-shadow: 0 12px 30px rgba(197,9,36,.3); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; z-index: 900; }
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .14s; }

@media (max-width: 980px) {
  .section-pad { padding: 88px 0; }
  .hero-grid, .about-grid, .tech-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero { min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-tags { justify-content: center; }
  .hero-visual { width: min(590px, 100%); margin: 0 auto; }
  .portrait-frame { margin: 0 auto; }
  .about-image { width: min(570px, 90%); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .podcast-shell { grid-template-columns: 1fr; }
  .podcast-gallery { min-height: 580px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 26px, 1180px); }
  .site-header { background: rgba(247,242,237,.94); }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 72px; left: 13px; right: 13px; display: grid; gap: 0; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 50px rgba(30,0,5,.16); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 14px; border-radius: 12px; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 125px; }
  .hero-grid { gap: 42px; }
  .hero-copy h1 { font-size: clamp(44px, 13vw, 66px); }
  .hero-lead { font-size: 16px; }
  .portrait-frame { width: 88%; }
  .card-top { left: -22px; top: 16%; }
  .card-bottom { right: -18px; bottom: 24px; }
  .about-grid { gap: 52px; }
  .about-image::before { left: -12px; bottom: -12px; }
  .image-label { right: -8px; bottom: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .podcast-shell { padding: 28px 20px; border-radius: 26px; gap: 35px; }
  .podcast-gallery { min-height: 430px; }
  .podcast-main { width: 66%; }
  .podcast-small { width: 50%; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 560px 460px auto; }
  .gallery-wide { grid-row: auto; }
  .gallery-quote { min-height: 250px; }
  .contact-panel { padding: 16px; }
  .contact-card { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 15px; }
  .contact-icon { width: 48px; height: 48px; border-radius: 14px; }
  .contact-card strong { font-size: 17px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 14px; }
  .copyright { grid-column: auto; }
}

@media (max-width: 430px) {
  .section-pad { padding: 72px 0; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .portrait-card { padding: 10px 12px; }
  .card-top { left: -10px; }
  .card-bottom { right: -9px; }
  .about-copy h2, .section-heading h2, .tech-copy h2, .podcast-copy h2, .contact-copy h2 { font-size: 37px; }
  .skill-cloud { padding: 20px; }
  .podcast-gallery { min-height: 360px; }
  .gallery-grid { grid-template-rows: 480px 420px auto; }
  .contact-form { padding: 22px 16px; }
}

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