/* ============================================================
   ODVJETNIČKI URED KOVAČ — Stylesheet
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #1C2B4A;
  --navy-dark:   #0F1928;
  --navy-mid:    #243560;
  --gold:        #B8975A;
  --gold-light:  #CBA96E;
  --gold-dark:   #9A7D48;
  --off-white:   #F9F8F5;
  --white:       #FFFFFF;
  --text:        #2C2C2C;
  --text-muted:  #5A5A5A;
  --text-light:  #888888;
  --border:      #E2DDD6;
  --border-light:#EDEBE7;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.13);
  --radius:      2px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:   1200px;
  --section-v:   96px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { max-width:100%; height:auto; display:block; }
a    { color:inherit; text-decoration:none; transition:color 0.2s var(--ease); }
ul   { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input,textarea,select { font-family:inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width:768px) { .container { padding: 0 20px; } }

/* ── Section spacing ───────────────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section--dark { background: var(--navy-dark); color: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--off  { background: var(--off-white); }

/* ── Typography ────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.8;
}
.section-lead--light { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-lead { margin-left:auto; margin-right:auto; }

.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 24px;
}
.gold-rule--center { margin-left:auto; margin-right:auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 16px rgba(184,151,90,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* ── Navigation ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
              padding 0.3s var(--ease);
  padding: 0;
}
.site-header--transparent { background: transparent; }
.site-header--solid,
.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo { display:flex; flex-direction:column; line-height:1; gap:2px; }
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo:hover .nav-logo-name { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  color: var(--gold) !important;
  border: 1px solid rgba(184,151,90,0.5);
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}
.nav-cta::after { display:none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 40px 40px;
}
.nav-mobile.open { display:flex; }
.nav-mobile a {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav-mobile a:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 32px;
  font-family: var(--font-sans) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 14px 40px !important;
  border: none !important;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 60% 50%, rgba(28,43,74,0.6) 0%, transparent 70%),
    linear-gradient(135deg, #0F1928 0%, #1C2B4A 60%, #1a2a48 100%);
}
.hero-decor {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(184,151,90,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-decor::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(184,151,90,0.07);
  border-radius: 50%;
}
.hero-decor-tl {
  position: absolute;
  left: -40px;
  top: 72px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(184,151,90,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.hero-title-full {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.hero-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
  opacity: 0.8;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 12px;
}
.hero-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(184,151,90,0.6), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:0.4; transform:scaleY(1); }
  50%      { opacity:1;   transform:scaleY(1.1); }
}

/* ── Intro section ─────────────────────────────────────────── */
.intro { padding: 88px 0; background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-text p { color: var(--text-muted); margin-bottom: 18px; }
.intro-text p:last-of-type { margin-bottom: 0; }
.intro-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.intro-badge {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--off-white);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.intro-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.intro-badge:hover::before { opacity: 1; }
.intro-badge-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.intro-badge-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
}

/* ── Services preview ──────────────────────────────────────── */
.services-preview { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  padding: 36px 30px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-icon svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.5; }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.service-link:hover { color: var(--gold); gap: 10px; }
.service-link svg { width:14px; height:14px; }

.services-preview .section-footer {
  text-align: center;
  margin-top: 48px;
}

/* ── All services (full page) ──────────────────────────────── */
.all-services { background: var(--white); }
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.all-service-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.all-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--border-light);
  transition: background 0.25s;
}
.all-service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.all-service-card:hover::before { background: var(--gold); }
.all-service-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(28,43,74,0.08);
  line-height: 1;
  margin-bottom: 14px;
}
.all-service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.all-service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
}

/* ── Approach / Values ─────────────────────────────────────── */
.approach { background: var(--navy); padding: var(--section-v) 0; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  margin-top: 56px;
}
.approach-item { text-align: center; }
.approach-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.approach-icon svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.4; }
.approach-item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.approach-item p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-chevron svg { width:100%; height:100%; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ── Contact CTA strip ─────────────────────────────────────── */
.contact-cta {
  background: var(--navy-dark);
  padding: 72px 0;
  text-align: center;
}
.contact-cta .section-lead--light { margin: 0 auto; }
.contact-cta .btn-group { justify-content: center; }

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 320px; height: 320px;
  border: 1px solid rgba(184,151,90,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.75;
}

/* ── About / Bio ───────────────────────────────────────────── */
.bio { background: var(--white); }
.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.bio-portrait {
  position: sticky;
  top: 104px;
}
.bio-photo-placeholder {
  background: var(--off-white);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.bio-photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.bio-photo-inner {
  text-align: center;
  color: var(--text-light);
}
.bio-photo-inner svg {
  width: 64px; height: 64px;
  margin: 0 auto 12px;
  opacity: 0.3;
}
.bio-photo-inner span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bio-portrait-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.bio-portrait-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.bio-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}
.bio-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.975rem;
  line-height: 1.82;
}
.bio-content p:last-of-type { margin-bottom: 0; }

.bio-details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bio-detail {
  padding: 20px 22px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.bio-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.bio-detail-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

/* ── Values (about page) ───────────────────────────────────── */
.values { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 18px;
}
.value-card-icon svg { width:100%; height:100%; fill:none; stroke:currentColor; stroke-width:1.5; }
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ── Education / Membership ────────────────────────────────── */
.education { background: var(--white); }
.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.edu-block h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.edu-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.edu-list li:last-child { border-bottom: none; }
.edu-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.edu-item-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.edu-item-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Contact page ──────────────────────────────────────────── */
.contact-main { background: var(--white); }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail-icon svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.8; }
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.975rem;
  color: var(--text);
  font-weight: 500;
}
.contact-detail-value a:hover { color: var(--navy); text-decoration: underline; }


/* ── Contact form ──────────────────────────────────────────── */
.contact-form-section { background: var(--off-white); }
.contact-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 52px 56px;
}
.form-note {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 4px;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label span { color: var(--gold); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.925rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,43,74,0.07);
}
.form-control::placeholder { color: #b8b3ac; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23888' stroke-width='1.5'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; }

.form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: border-color 0.2s, background 0.2s;
}
.form-file-label:hover {
  border-color: var(--navy);
  background: var(--off-white);
}
.form-file-label svg { width:18px; height:18px; flex-shrink:0; color:var(--gold); }
#file-upload { display: none; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}
.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-checkbox-label a {
  color: var(--navy);
  text-decoration: underline;
}
.form-checkbox-label a:hover { color: var(--gold-dark); }

.form-submit {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.form-submit .btn { padding: 15px 42px; font-size: 0.875rem; letter-spacing: 0.06em; }
.form-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-hint svg { width:14px; height:14px; color:var(--gold); flex-shrink:0; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(184,151,90,0.1);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.form-success-icon svg { width:28px; height:28px; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p { font-size: 0.925rem; color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-col a { color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  font-style: normal;
}
.footer-credit a:hover { color: var(--gold-light); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Footer demo notice ────────────────────────────────────── */
.footer-demo {
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-demo p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.28);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ── Footer HOK notice ─────────────────────────────────────── */
.footer-hok {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-hok p { font-size:0.78rem; color:rgba(255,255,255,0.35); line-height:1.65; }
.footer-hok a { color:rgba(255,255,255,0.52); text-decoration:underline; }
.footer-hok a:hover { color:var(--gold); }

/* ── Legal content pages ───────────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 44px 0 10px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.legal-content h2:first-child { border-top:none; margin-top:0; padding-top:0; }
.legal-content p { color:var(--text-muted); font-size:0.95rem; line-height:1.85; margin-bottom:14px; }
.legal-content ul { margin:10px 0 16px 22px; list-style:disc; }
.legal-content ul li { color:var(--text-muted); font-size:0.95rem; line-height:1.75; margin-bottom:6px; }
.legal-content strong { color:var(--text); }
.legal-meta { margin-top:52px; padding-top:22px; border-top:1px solid var(--border-light); font-size:0.78rem; color:var(--text-light); }


/* ── Fade-in scroll animation ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utility ───────────────────────────────────────────────── */
.text-center { text-align:center; }
.mt-0 { margin-top:0 !important; }
.mt-8 { margin-top:8px; }
.mt-16 { margin-top:16px; }
.mt-32 { margin-top:32px; }
.sr-only {
  position:absolute; width:1px; height:1px; padding:0;
  margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width:1024px) {
  :root { --section-v: 72px; }
  .nav-links { gap: 24px; }
  .intro-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .all-services-grid { grid-template-columns: repeat(2,1fr); }
  .approach-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .bio-grid { grid-template-columns: 280px 1fr; gap: 48px; }
  .education-grid { gap: 32px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width:768px) {
  :root { --section-v: 56px; }

  /* Nav */
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-scroll { display:none; }

  /* Sections */
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-badge-grid { grid-template-columns: 1fr 1fr; }

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

  .approach-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-form-wrap { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .bio-portrait { position: static; }
  .bio-photo-placeholder { max-width: 280px; }
  .bio-details { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap:8px; }

  .form-submit { flex-direction: column; align-items: stretch; }
  .form-submit .btn { justify-content: center; }


  .page-hero { padding: 120px 0 60px; }
}

@media (max-width:480px) {
  .approach-grid { grid-template-columns: 1fr; }
  .intro-badge-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.5rem; }
}
