/* Design tokens (HSL) */
:root {
  --bg: 210 25% 97%; /* #f5f7f9 */
  --text: 158 15% 14%; /* #1f2a26 */
  --primary: 158 15% 14%; /* dark green */
  --secondary: 36 100% 71%; /* gold #ffc569 */
  --accent: 180 31% 16%; /* petrol #1c3434 */
  --muted: 210 10% 40%;
  --card: 0 0% 100%;
  --shadow-elegant: 0 10px 30px -10px hsl(var(--primary) / 0.25);
  --shadow-gold: 0 8px 24px -8px hsl(var(--secondary) / 0.45);
}

}
.hero-ctass {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: hsl(var(--bg));
  color: hsl(var(--text));
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; margin: 0 0 0.6em; color: hsl(var(--primary)); }
p { margin: 0 0 1em; color: hsl(var(--text) / 0.9); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 5rem 0; }

/* Header */
.site-header { position: sticky; top: 0; background: hsl(var(--bg) / 0.8); backdrop-filter: blur(8px); border-bottom: 1px solid hsl(var(--primary) / 0.08); z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; }
.brand-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; }
.brand-sub { display: block; font-size: 0.75rem; color: hsl(var(--muted)); }
.primary-nav ul { display: flex; list-style: none; gap: 1rem; margin: 0; padding: 0; }
.primary-nav a { padding: 0.5rem 0.75rem; border-radius: 0.4rem; color: hsl(var(--primary)); }
.primary-nav a:hover { background: hsl(var(--primary) / 0.06); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem 1.5rem; border-radius: 0.6rem; font-weight: 600; transition: all .25s ease; text-align: center; }
.btn-primary { background: hsl(var(--secondary)); color: hsl(var(--primary)); box-shadow: var(--shadow-gold); }
.btn-primary:hover { filter: brightness(0.95); transform: translateY(-1px); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: hsl(var(--text)); color: hsl(var(--card)); border: 2px solid hsl(var(--card));}
.btn-secondary { background: hsl(var(--secondary)); color: hsl(var(--primary)); box-shadow: var(--shadow-gold); }

/* Hero */
.hero { position: relative; min-height: 97vh; display: flex; place-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, hsl(var(--primary) / 0.88), hsl(var(--accent) / 0.88)); }
.hero-content { position: relative; z-index: 1; padding: 4rem 1rem 7rem 1rem; }
.hero-grid { display: flex; gap: 2rem; align-items: center; }
.hero-text { color: hsl(0 0% 100%); max-width: 720px; }
.hero-text .eyebrow { color: hsl(var(--secondary)); font-family: 'Playfair Display', serif; letter-spacing: .06em; }
.hero-text h1 { color: hsl(0 0% 100%); font-size: clamp(2.2rem, 4vw + 1rem, 4rem); line-height: 1.1; }
.hero-text p { color: hsl(0 0% 98% / 0.9); font-size: clamp(1rem, 0.5vw + 1rem, 1.25rem); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; }
.stats { display: flex; gap: 4rem; margin-top: 1.5rem; }
.stat { text-align: center; color: hsl(0 0% 100%); }
.stat-value { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 1.2vw + 1rem, 2.2rem); color: hsl(var(--secondary)); }
.stat-label { opacity: 0.9; font-size: 0.9rem; }
.hero-image .portrait-wrap { position: relative; max-width: 380px; margin: 0 auto; }
.hero-image .portrait-wrap::before { content: ""; position: absolute; inset: -16px; background: hsl(var(--secondary) / 0.2); filter: blur(24px); border-radius: 1.2rem; z-index: -1; }
.hero-image img { border-radius: 1.2rem; box-shadow: var(--shadow-elegant); }
.scroll-indicator { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); }
.mouse { width: 26px; height: 42px; border: 2px solid hsl(0 0% 100% / 0.4); border-radius: 999px; display: grid; place-items: start; padding: 6px; }
.mouse span { width: 4px; height: 10px; background: hsl(var(--secondary)); border-radius: 999px; animation: bounce 1.2s infinite; }
@keyframes bounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* Sections */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.section-head .divider { width: 96px; height: 4px; background: hsl(var(--secondary)); margin: 0.75rem auto 0; border-radius: 2px; }

.cards { display: grid; gap: 1rem; }
.cards.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cards.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { background: hsl(var(--card)); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-elegant); transition: transform .25s ease, box-shadow .25s ease; text-align: left; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.card-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

.about { background: hsl(var(--bg)); }
.cta-banner { margin-top: 2.5rem; background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))); color: white; border-radius: 1.2rem; padding: 2rem; text-align: center; box-shadow: var(--shadow-elegant); }
.cta-banner h3 { color: white; font-size: clamp(1.6rem, 1vw + 1rem, 2.2rem); }
.cta-banner p { color: hsl(0 0% 98% / 0.9); margin-bottom: 1rem; }

.services { background: linear-gradient(180deg, hsl(var(--bg)), hsl(0 0% 100%)); }
.process { margin-top: 2.5rem; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.step { text-align: center; }
.step span { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 999px; background: hsl(var(--secondary) / 0.2); color: hsl(var(--primary)); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; margin-bottom: 0.5rem; }

.contact .cta-box { background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent))); color: white; border-radius: 1.2rem; padding: 2rem; text-align: center; box-shadow: var(--shadow-elegant); margin-bottom: 2rem; }
.contact .cta-box h2 { color: white; font-size: clamp(1.8rem, 1.2vw + 1rem, 2.6rem); }
.contact .cta-box p { color: hsl(0 0% 98% / 0.9); margin-bottom: 1rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.contact-card { background: hsl(var(--card)); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-elegant); transition: transform .25s ease, box-shadow .25s ease; text-align: center; }
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Footer */
.site-footer { padding: 2rem 0; border-top: 1px solid hsl(var(--primary) / 0.08); background: hsl(0 0% 100% / 0.6); }
.footer-inner { text-align: center; color: hsl(var(--muted)); }

/* Responsive */

@media (max-width: 1150px){
  .hero-grid {flex-wrap: wrap;}
}

@media (max-width: 1024px){
  .cards.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 768px){
  .cards.two { grid-template-columns: 1fr; }
  .cards.four { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
