*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #050809;
  --bg-alt: #0c1214;
  --card-bg: #11181b;
  --card-alt-bg: #111b16;
  --accent: #23a45a;
  --accent-soft: rgba(35, 164, 90, 0.15);
  --accent-alt: #bf3b3b;
  --text: #f5f7f8;
  --text-soft: #b3bdc2;
  --border-subtle: #1f292e;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.55);

  /* Section Colors */
  --color-hero: #f4d03f;
  --color-persona: #27ae60;
  --color-business: #3498db;
  --color-social: #9b59b6;
  --color-media: #e74c3c;
  --color-projects: #e67e22;
  --color-contact: #8b4513;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #101c18 0, #050809 45%);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  position: relative;
  padding: 4.5rem 0;
}

.section.alt {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.015), rgba(0, 0, 0, 0.35));
}

/* Section Color Backgrounds */
.section.color-hero {
  background: linear-gradient(to bottom, rgba(244, 208, 63, 0.15), rgba(5, 8, 9, 0.9));
}

.section.color-persona {
  background: linear-gradient(to bottom, rgba(39, 174, 96, 0.15), rgba(5, 8, 9, 0.9));
}

.section.color-business {
  background: linear-gradient(to bottom, rgba(52, 152, 219, 0.15), rgba(5, 8, 9, 0.9));
}

.section.color-social {
  background: linear-gradient(to bottom, rgba(155, 89, 182, 0.15), rgba(5, 8, 9, 0.9));
}

.section.color-media {
  background: linear-gradient(to bottom, rgba(231, 76, 60, 0.15), rgba(5, 8, 9, 0.9));
}

.section.color-projects {
  background: linear-gradient(to bottom, rgba(230, 126, 34, 0.15), rgba(5, 8, 9, 0.9));
}

.section.color-contact {
  background: linear-gradient(to bottom, rgba(139, 69, 19, 0.15), rgba(5, 8, 9, 0.9));
}

.section-title {
  font-size: 2rem;
  margin: 0 0 0.6rem;
  letter-spacing: 0.04em;
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--text-soft);
  max-width: 640px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(5, 8, 9, 0.98), rgba(5, 8, 9, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.25rem;
  gap: 1.5rem;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #35cc76, #0a160f);
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-image {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.logo-tagline {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.main-nav a,
.main-nav .nav-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  transition: all 0.16s ease-out;
}

.main-nav a:hover,
.main-nav .nav-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(35, 164, 90, 0.08);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 0.3rem;
}

.hero-title {
  font-size: clamp(2.4rem, 3.4vw, 3.1rem);
  margin: 0 0 0.3rem;
}

.hero-subtitle {
  margin: 0 0 0;
  color: var(--text-soft);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-meta {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin: 0;
}

.hero-card {
  background: radial-gradient(circle at top left, #18251f, #050809);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.hero-image-card {
  background: radial-gradient(circle at top left, #18251f, #050809);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card h2 {
  margin: 0 0 0.75rem;
}

.hero-card p {
  margin: 0 0 0.75rem;
}

.hero-card ul {
  padding-left: 1.1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.hero-card-image {
  display: block;
  margin: 0;
  border-radius: 999px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px rgba(35, 164, 90, 0.3);
}

/* To-top button */

.to-top {
  position: absolute;
  right: 22px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 1.05rem;
  backdrop-filter: blur(6px);
  transition: 0.18s;
}

.to-top:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--accent);
}

/* Slide Navigation */

.slide-nav {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.slide-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.slide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.slide-links a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  transition: all 0.16s ease-out;
}

.slide-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(35, 164, 90, 0.08);
  transform: translateY(-1px);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.card.accent {
  background: radial-gradient(circle at top left, var(--accent-soft), #09140f);
  border-color: rgba(35, 164, 90, 0.35);
}

.card h3 {
  margin: 0 0 0.65rem;
}

.card p {
  margin: 0 0 0.65rem;
}

.card-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* About photo */

.about-photo {
  width: 250px;
  max-width: 100%;
  border-radius: 999px;
  display: block;
  margin: 0 auto;
}

/* Lists */

.tag-list,
.meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  margin: 0 0.4rem 0.4rem 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.76rem;
}

.meta-list li {
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.16s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #35cc76);
  color: #04100a;
  font-weight: 600;
}

.btn.primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn.full {
  width: 100%;
}

.business-cta {
  margin-top: 2rem;
  text-align: center;
}

.business-cta-btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 1.75rem;
  align-items: flex-start;
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

input,
textarea,
select {
  background: #040708;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.55rem 0.6rem;
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

/* Footer */

.site-footer {
  padding: 1.8rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #040607;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.82rem;
  color: var(--text);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.footer-links {
  color: var(--text);
  line-height: 1.6;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.16s ease-out;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-company {
  color: var(--text-soft);
  line-height: 1.6;
}

.footer-copyright {
  color: var(--text-soft);
  line-height: 1.6;
}

.footer-image {
  flex-shrink: 0;
}

.footer-image img {
  display: block;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-image {
    margin-top: 1rem;
  }
}


/* Responsive */

@media (max-width: 840px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .main-nav {
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
  }

  .hero {
    padding-top: 2.5rem;
  }
}

/* Social Grid */
.social-grid {
  column-count: 3;
  column-gap: 1rem;
}

/* .social-col removed */

.socialnetLink {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-soft);
  transition: color 0.16s ease-out;
  margin-bottom: 0.5rem;
  /* Add spacing between items in columns */
  break-inside: avoid;
  /* Prevent links from breaking across columns */
}

.socialnetLink:hover {
  color: var(--accent);
}

.social-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.16s ease-out;
}

.socialnetLink:hover .social-icon {
  filter: brightness(0) saturate(100%) invert(57%) sepia(53%) saturate(609%) hue-rotate(95deg) brightness(91%) contrast(88%);
}

/* Address Card */
.address-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.address-text {
  flex: 1;
}

.address-text a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.16s ease-out;
}

.address-text a:hover {
  color: var(--accent);
}

.map-placeholder {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.8rem;
}