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

:root {
  --pro-navy: #111111;
  --pro-navy-light: #333333;
  --pro-text: #111111;
  --pro-muted: #666666;
  --pro-bg: #ffffff;
  --pro-bg-alt: #f5f5f5;
  --pro-border: #dddddd;
  --pro-accent: #111111;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--pro-bg);
  color: var(--pro-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* --- NAV --- */
.pro-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--pro-bg);
  border-bottom: 1px solid var(--pro-border);
  z-index: 100;
}

.pro-nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pro-nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pro-navy);
  text-decoration: none;
}

.pro-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.pro-nav-links a {
  color: var(--pro-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.pro-nav-creative {
  color: #999999 !important;
  font-style: italic;
}

/* --- SECTIONS --- */
.pro-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pro-section {
  padding: 5rem 0;
}

.pro-section-alt {
  background: var(--pro-bg-alt);
}

.pro-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pro-accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pro-navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pro-divider {
  width: 48px;
  height: 2px;
  background: var(--pro-accent);
  margin: 1.5rem 0 2.5rem;
}

/* --- HERO --- */
.pro-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: var(--pro-navy);
  color: #ffffff;
}

.pro-hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.pro-hero-text h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.pro-hero .pro-label {
  color: var(--pro-accent);
}

.pro-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.pro-hero-photo {
  width: 280px;
  flex-shrink: 0;
}

.pro-hero-photo img {
  width: 100%;
  display: block;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.15);
  filter: grayscale(100%);
}

.pro-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  background: #ffffff;
  color: #111111;
}

.pro-btn:hover {
  background: #dddddd;
}

/* --- EXPERIENCE --- */
.pro-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pro-exp-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--pro-border);
}

.pro-exp-stat {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--pro-accent);
  margin-bottom: 0.5rem;
}

.pro-exp-card h3 {
  font-size: 1rem;
  color: var(--pro-navy);
  margin-bottom: 0.5rem;
}

.pro-exp-card p {
  font-size: 0.88rem;
  color: var(--pro-muted);
  line-height: 1.6;
}

.pro-experience-detail {
  max-width: 720px;
}

.pro-experience-detail p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--pro-muted);
  margin-bottom: 1.25rem;
}

/* --- SERVICES --- */
.pro-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--pro-border);
}

.pro-service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--pro-border);
  transition: background 0.2s;
}

.pro-service-card:last-child {
  border-right: none;
}

.pro-service-card:hover {
  background: rgba(15, 31, 61, 0.03);
}

.pro-service-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pro-accent);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.pro-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pro-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.pro-service-card p {
  font-size: 0.88rem;
  color: var(--pro-muted);
  line-height: 1.7;
}

/* --- PORTFOLIO --- */
.pro-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pro-project-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid var(--pro-border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.pro-project-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pro-project-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.pro-project-info {
  padding: 1.5rem;
}

.pro-project-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pro-navy);
  margin-bottom: 0.5rem;
}

.pro-project-info p {
  font-size: 0.85rem;
  color: var(--pro-muted);
  line-height: 1.6;
}

/* --- CONTACT --- */
.pro-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.pro-contact-text p {
  color: var(--pro-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.pro-email {
  display: inline-block;
  color: var(--pro-navy);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--pro-accent);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.pro-email:hover {
  color: var(--pro-navy-light);
}

.pro-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pro-form label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pro-muted);
  margin-bottom: -0.5rem;
}

.pro-form input,
.pro-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--pro-bg);
  border: 1px solid var(--pro-border);
  color: var(--pro-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.pro-form input:focus,
.pro-form textarea:focus {
  border-color: var(--pro-navy);
}

.pro-form input::placeholder,
.pro-form textarea::placeholder {
  color: #aaa;
}

.pro-form textarea {
  resize: vertical;
  min-height: 130px;
}

.pro-form .pro-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* --- FOOTER --- */
.pro-footer {
  text-align: center;
  padding: 2.5rem 2rem;
  color: var(--pro-muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--pro-border);
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.pro-footer-link {
  color: var(--pro-accent);
  text-decoration: none;
  font-style: italic;
  transition: color 0.2s;
}

.pro-footer-link:hover {
  color: #a07e1e;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
  .pro-nav-links { gap: 1.5rem; }

  .pro-hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pro-hero-photo {
    width: 200px;
    order: -1;
  }

  .pro-hero-text h1 { font-size: 2.2rem; }

  .pro-experience-grid,
  .pro-services-grid,
  .pro-portfolio-grid {
    grid-template-columns: 1fr;
  }

  .pro-service-card {
    border-right: none;
    border-bottom: 1px solid var(--pro-border);
  }

  .pro-service-card:last-child { border-bottom: none; }

  .pro-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .pro-nav-inner { padding: 0.8rem 1rem; }
  .pro-nav-links { display: none; }
}
