/* ============================================
   gonlucero.com — Professional & Friendly
   ============================================ */

:root {
  --color-bg: #f8f9fa;
  --color-surface: #ffffff;
  --color-text: #1a1a2e;
  --color-text-secondary: #555770;
  --color-text-muted: #8b8da3;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-soft: #eff4ff;
  --color-accent: #0ea5e9;
  --color-warm: #f97316;
  --color-border: #e5e7eb;
  --color-border-light: #f0f1f3;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 6px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.08), 0 8px 20px rgba(0,0,0,0.04);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}


/* ============================================
   Header / Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

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

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

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  padding: 4px 12px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.lang-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary) !important;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--color-primary);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================
   Hero
   ============================================ */

.hero {
  padding-top: 120px;
  padding-bottom: var(--space-4xl);
  background: linear-gradient(170deg, #eef2ff 0%, #e8eeff 40%, #f0f4ff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
}

.hero-proof-item strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.hero-proof-item span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}


/* Hero Visual */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.hero-photo {
  width: 300px;
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--color-surface);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-highlights {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.hero-highlight svg {
  color: var(--color-primary);
  flex-shrink: 0;
}


/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}


/* ============================================
   Section shared styles
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}


/* ============================================
   About
   ============================================ */

.about {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, #f5f8ff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.about-intro h2 + .about-lead {
  margin-bottom: var(--space-lg);
}

.about-lead {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-lead em {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-primary);
}

.about-intro p:last-child {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.value-card {
  padding: var(--space-xl);
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  border-radius: var(--radius-lg);
  border: none;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

.value-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  color: #fff;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: #fff;
}

.value-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}


/* ============================================
   Services
   ============================================ */

.services {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, #f5f8ff 0%, var(--color-bg) 30%, var(--color-bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  border-radius: var(--radius-lg);
  border: none;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(37, 99, 235, 0.25);
  transform: translateY(-4px);
}

.service-number {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-lg);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #fff;
}

.service-card > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-includes li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 1);
  padding-left: var(--space-lg);
  position: relative;
}

.service-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.service-includes li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 13px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}


/* ============================================
   Portfolio
   ============================================ */

.portfolio {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, #f0f4ff 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg);
  transition: all var(--transition);
}

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

.portfolio-img {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.04);
}

.portfolio-info {
  padding: var(--space-lg);
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--card-accent, var(--color-primary));
  background: color-mix(in srgb, var(--card-accent, var(--color-primary)) 8%, white);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-sm);
}

.portfolio-info h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.portfolio-info p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}


/* ============================================
   Process
   ============================================ */

.process {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, #f0f4ff 0%, #e8eeff 50%, #eef2ff 100%);
  background-size: 100% 200%;
  animation: process-bg 10s ease infinite;
  position: relative;
}

@keyframes process-bg {
  0%, 100% { background-position: 50% 0%; }
  50%      { background-position: 50% 100%; }
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-lg);
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35), 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: var(--color-border);
  flex-shrink: 0;
  margin-top: 24px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-primary);
  border-top: 2px solid var(--color-primary);
  transform: rotate(45deg);
}


/* ============================================
   Contact / CTA
   ============================================ */

.contact {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1a2e4a 70%, #0f172a 100%);
  background-size: 200% 200%;
  animation: contact-gradient 14s ease infinite;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orb-drift 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes contact-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
}

.contact-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.contact-content > p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #fff !important;
  transition: all var(--transition);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff !important;
  transform: translateX(4px);
}

.contact-method svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.contact-method strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

.contact-method span {
  font-size: 0.8125rem;
  opacity: 0.6;
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(37, 99, 235, 0.08);
  position: relative;
  z-index: 1;
}

.contact-card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card > p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.contact-card-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #059669;
  background: #ecfdf5;
  padding: var(--space-xs) var(--space-md);
  border-radius: 100px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* ============================================
   Footer
   ============================================ */

.footer {
  padding: var(--space-xl) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: var(--color-primary);
}

.footer-logo:hover {
  color: var(--color-text);
}

.footer p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

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


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo {
    width: 260px;
    height: 310px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .contact-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-methods {
    align-items: center;
  }

  .contact-method {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-surface);
    padding: var(--space-lg);
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: var(--space-2xl);
  }

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

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

  .process-grid {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .process-connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .process-connector::after {
    right: auto;
    left: -3px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }

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

  .footer-inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    width: 220px;
    height: 270px;
  }

  .hero-proof {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero-proof-divider {
    width: 40px;
    height: 1px;
  }

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