:root {
  --navy: #1a365D;
  --gold: #c1694F;
  --bg: #faf8f3;
  --text: #2c2c2c;
  --light-border: #d8d0c0;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.page {
  max-width: 720px;
  margin: 40px auto;
  padding: 40px 56px 50px 56px;
  background: #fff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

/* TOP BAR: NAV & LANGUAGE SWITCHER */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 28px;
  border-bottom: 1.5px solid var(--light-border);
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
  font-weight: 600;
}

.lang-switch {
  font-size: 13.5px;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid var(--light-border);
  border-radius: 20px;
  background: #fff;
  transition: all 0.2s ease;
}

.lang-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: #fdfaf7;
}

/* HEADER */
.header {
  text-align: left;
  margin-bottom: 28px;
}

.header h1 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 14px;
}

.header p {
  font-size: 15px;
  color: #444;
}

.header strong {
  color: var(--gold);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1.5px dashed var(--light-border);
  margin: 24px 0;
}

/* PROFILE BLOCK */
.profile {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 8px;
}

.profile img {
  width: 88px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.profile-text h2 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 6px;
}

.profile-text p {
  font-size: 14.5px;
}

.profile-text strong {
  color: var(--gold);
}

/* SECTION TITLES & HEADINGS */
.section-title {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 20px;
  text-align: center;
  margin-bottom: 14px;
}

.category-title {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--light-border);
}

/* SERVICES LIST */
.services {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
}

.services li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

.services li .label {
  font-weight: 600;
  color: var(--gold);
}

/* LISTS & EXPERTISE */
.expertise-list,
.portfolio-list,
.credentials {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 8px;
}

.expertise-list li,
.portfolio-list li,
.credentials li {
  font-size: 14.5px;
  margin-bottom: 8px;
}

.portfolio-item {
  margin-bottom: 16px;
}

.portfolio-item h3 {
  font-size: 15.5px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-item p {
  font-size: 14.5px;
  color: #444;
}

.highlight-intro strong,
.credentials li .cred-label {
  color: var(--gold);
  font-weight: 700;
}

/* PROSE / CONTENT PARAGRAPHS */
.prose p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
}

.prose blockquote {
  margin: 20px 0;
  padding: 14px 20px;
  background: #fdfaf7;
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: #3b3b3b;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.text-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.btn-packet {
  display: inline-block;
  margin: 12px 0;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.btn-packet:hover {
  background: var(--gold);
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 12px;
}

.cta h2 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  background: #f9f7f2;
  border: 1px solid var(--light-border);
  transition: all 0.2s ease;
}

.contact-item:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: #fff;
}

.contact-icon {
  font-size: 16px;
}

/* BRAND */
.brand {
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1.5px solid var(--light-border);
}

.brand-name {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 1px;
}

.brand-name span {
  color: var(--gold);
}

@media (max-width: 600px) {
  .page {
    margin: 15px auto;
    padding: 24px 20px;
  }
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .profile {
    flex-direction: column;
    text-align: center;
  }
  .contact-row {
    flex-direction: column;
    gap: 10px;
  }
}
