:root {
  --bg: oklch(98.5% 0.002 260);
  --surface: oklch(100% 0 0);
  --fg: oklch(22% 0.015 260);
  --muted: oklch(48% 0.01 260);
  --border: oklch(90% 0.005 260);
  --accent: oklch(38% 0.12 270);

  --font-display: 'Iowan Old Style', 'Charter', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 247, 245, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 60px;
  width: auto;
  display: block;
}

.nav-logo-link, .home-link {
  text-decoration: none;
  color: inherit;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--fg); }

/* ---- HERO ---- */
.hero {
  padding: 160px 32px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.hero-cta:hover { opacity: 0.88; }

/* ---- CONTACT BUTTON ---- */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.contact-btn:hover { opacity: 0.88; }

/* ---- SECTION COMMON ---- */
.section {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.15s;
}

.service-card:hover { background: var(--bg); }

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  font-weight: 500;
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- BLOG PREVIEW ---- */
.blog-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
}

.blog-post-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.blog-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--border);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 8px;
  padding: 16px;
}

.blog-excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 16px 12px;
}

.blog-date {
  display: block;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 0 16px 16px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
}

.view-all-btn:hover { opacity: 0.88; }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-photo-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.about-role {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---- VALUES ---- */
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  font-weight: 500;
}

.value-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- CONTACT ---- */
.contact-section {
  background: var(--fg);
  color: var(--surface);
  border-radius: 12px;
  padding: 64px;
}

.contact-section .section-label { color: rgba(255,255,255,0.5); }
.contact-section .section-title { color: var(--surface); }
.contact-section .section-desc { color: rgba(255,255,255,0.6); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.contact-item {
  min-width: 350px;
}

.contact-item h4 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-item p {
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding-right: 16px;
}

.contact-item a {
  font-size: 17px;
  color: var(--surface);
  text-decoration: none;
  line-height: 1.6;
}

.contact-item a:hover { text-decoration: underline; }

/* ---- FOOTER ---- */
.footer {
  padding: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { padding: 120px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { max-width: 100%; }
  .section { padding: 56px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-list { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { padding: 40px 28px; border-radius: 8px; }
  .about-stats { gap: 24px; }
}

/* ---- PLACEHOLDER IMAGES ---- */
[data-ph-img] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ---- SVG ICONS ---- */
.icon { display: block; }
.icon svg { width: 100%; height: 100%; }