/* ============================================
   ILMPRO — Elegant Redesign
   Aesthetic: Refined Editorial / Luxury Firm
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================ */
 
:root {
  --forest:    #046307;
  --forest-lt: #0a7a0d;
  --gold:      #C9A84C;
  --gold-lt:   #FFDF00;
  --ink:       #1A1A1A;
  --ink-mid:   #3C3C3C;
  --ink-soft:  #6B6B6B;
  --cream:     #FAF9F6;
  --off-white: #F3F2EE;
  --border:    #E2E0D8;
  --white:     #FFFFFF;
}
 
/* ─── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
 
/* Subtle noise texture overlay */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
 
/* ─── Layout ───────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
 
/* ─── Header ───────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;                        /* fixed slim bar */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: visible;                   /* let logo spill below */
}
 
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  height: 100%;
  overflow: visible;
}
 
/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible;
}
 
.logo img {
  height: 200px;                       /* big & proud */
  width: auto;
  display: block;
  position: relative;
  top: 60px;                           /* hangs below the bar naturally */
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.10));
  transition: transform 0.25s ease;
}
 
.logo img:hover {
  transform: scale(1.04) translateY(-2px);
}
 
nav {
  display: flex;
  gap: 0;
}
 
nav a {
  position: relative;
  padding: 6px 18px;
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}
 
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
 
nav a:hover {
  color: var(--forest);
}
 
nav a:hover::after {
  transform: scaleX(1);
}
 
.nav-cta {
  padding: 9px 22px;
  background: var(--forest);
  color: var(--white) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}
 
.nav-cta:hover {
  background: var(--forest-lt);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hero-bg-watermark { display: none; }
}
 
/* ─── Hero ─────────────────────────────────── */
.hero {
  position: relative;
  padding: 130px 0 110px;
  background: var(--cream);
  overflow: hidden;        /* keep this — just needed z-index fix */
}

.hero .container {
  position: relative;
  z-index: 1;             /* text floats above the watermark */
}
 
.hero-bg-watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-bg-watermark img {
  height: clamp(300px, 45vw, 580px);
  width: auto;
  opacity: 0.12;
  filter: grayscale(100%) contrast(150%) brightness(1.2);
}
 
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
 
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 780px;
  margin-bottom: 32px;
}
 
.hero h1 em {
  font-style: italic;
  color: var(--forest);
}
 
.hero p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 300;
}
 
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
 
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(4, 99, 7, 0.2);
}
 
.btn-primary:hover {
  background: var(--forest-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(4, 99, 7, 0.3);
}
 
.btn-primary.light {
  background: var(--gold-lt);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
 
.btn-primary.light:hover {
  background: #ffe533;
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}
 
.btn-ghost {
  display: inline-block;
  padding: 14px 8px;
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, border-color 0.25s;
}
 
.btn-ghost:hover {
  color: var(--forest);
  border-color: var(--forest);
}
 
.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
 
/* ─── Section Base ─────────────────────────── */
.section {
  padding: 100px 0;
}
 
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
 
.section-label.centered {
  justify-content: center;
  margin-bottom: 60px;
}
 
.section-label.centered::before { display: none; }
 
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 36px;
}
 
/* ─── Who We Are ───────────────────────────── */
.who-we-are {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
 
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
 
.col-left h2 { margin-bottom: 0; }
 
.col-right p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 20px;
}
 
.col-right p:last-child { margin-bottom: 0; }
 
/* ─── Values ───────────────────────────────── */
.values-section {
  background: var(--ink);
  color: var(--white);
}
 
.values-section .section-label {
  color: var(--gold);
}
 
.values-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}
 
.value-item {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.3s;
}
 
.value-item:hover {
  background: rgba(255,255,255,0.04);
}
 
.value-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  flex-shrink: 0;
}
 
.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.7;
  margin-top: 4px;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
 
.value-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
 
.value-content p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
 
/* ─── Services ─────────────────────────────── */
.services-section {
  background: var(--off-white);
}
 
.services-section h2 {
  margin-bottom: 60px;
}
 
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 36px 36px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  overflow: hidden;
}
 
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
 
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}
 
.service-card:hover::before {
  transform: scaleX(1);
}
 
.service-card.featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
 
.service-card.featured::before {
  background: var(--gold-lt);
}
 
.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  color: rgba(255,255,255,0.85);
}
 
.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--forest);
  opacity: 0.8;
}
 
.service-card.featured .service-icon {
  color: rgba(255,255,255,0.7);
}
 
.service-icon svg {
  width: 100%;
  height: 100%;
}
 
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--ink);
  line-height: 1.2;
}
 
.service-card.featured h3 {
  color: var(--white);
}
 
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
 
.service-card ul li {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}
 
.service-card ul li:first-child {
  border-top: 1px solid var(--border);
}
 
.service-card.featured ul li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.12);
}
 
.service-card.featured ul li:first-child {
  border-top-color: rgba(255,255,255,0.12);
}
 
.service-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: letter-spacing 0.2s, color 0.2s;
}
 
.service-card.featured .service-link {
  color: var(--gold-lt);
}
 
.service-link:hover {
  letter-spacing: 0.12em;
}
 
/* ─── Approach ─────────────────────────────── */
.approach-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}
 
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
 
.approach-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 48px;
}
 
.approach-stats {
  display: flex;
  gap: 48px;
}
 
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
 
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}
 
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 400;
}
 
/* Decorative ring diagram */
.approach-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.approach-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: spin-slow linear infinite;
}
 
.ring-1 {
  width: 88%;
  height: 88%;
  border-style: dashed;
  animation-duration: 40s;
}
 
.ring-2 {
  width: 66%;
  height: 66%;
  border-color: rgba(4,99,7,0.2);
  animation-duration: 28s;
  animation-direction: reverse;
}
 
.ring-3 {
  width: 44%;
  height: 44%;
  border-style: dashed;
  border-color: var(--gold);
  opacity: 0.4;
  animation-duration: 18s;
}
 
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
 
.approach-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 1;
}
 
.approach-center span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
 
.approach-center span:nth-child(2) {
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
}
 
.approach-center span:nth-child(3) {
  color: var(--forest);
  font-weight: 600;
}
 
/* ─── CTA ──────────────────────────────────── */
.cta {
  background: var(--ink);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(4,99,7,0.18) 0%, transparent 70%);
}
 
.cta-inner {
  position: relative;
  z-index: 1;
}
 
.cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
 
.cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 48px;
}
 
.cta h2 em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
 
/* ─── Footer ───────────────────────────────── */
footer {
  background: #111;
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
 
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
 
.footer-logo img {
  height: 100px;
  opacity: 0.6;
  filter: brightness(0) invert(1);
}
 
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
 
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
 
/* ─── Animations ───────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.hero .hero-label  { animation: fade-up 0.7s 0.1s both; }
.hero h1           { animation: fade-up 0.7s 0.25s both; }
.hero p            { animation: fade-up 0.7s 0.4s both; }
.hero-actions      { animation: fade-up 0.7s 0.55s both; }
 
/* ─── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .two-col,
  .approach-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
 
  .approach-visual { max-width: 280px; }
 
  .services-grid { grid-template-columns: 1fr; }
 
  .values-grid { flex-direction: column; }
 
  .value-divider { width: 100%; height: 1px; }
 
  .hero-bg-text { display: none; }
 
  .nav-cta { display: none; }
 
  .logo img {
    height: 100px;
    top: 10px;
  }
}
 
@media (max-width: 600px) {
  .hero { padding: 90px 0 70px; }
  .section { padding: 70px 0; }
  .approach-stats { gap: 28px; }
  nav a { padding: 6px 10px; }
}