@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Public+Sans:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Peignot Demi';
  src: url('../assets/peignot-demi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --gold: #C9A227;
  --gold-dark: #A9821B;
  --ink: #1E2233;
  --red: #D8432E;
  --cream: #FAF8F1;
  --card-border: #ECE6D6;
  --text-muted: #6B6A5E;
  --whatsapp: #25D366;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: 'Public Sans', sans-serif;
  color: var(--ink);
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  margin: 0;
}

p { margin: 0; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Announcement banner */
.announce {
  width: 100%;
  background: var(--red);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  flex-wrap: wrap;
}
.announce a { text-decoration: underline; }

/* Header */
.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--card-border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand img { height: 68px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.logotype { font-family: 'Peignot Demi', 'Fraunces', serif; font-size: 32px; }
.logotype .accent { color: var(--red); }
.brand-tag {
  font-size: 12px;
  color: #8A8577;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: #4A4F5C;
}
.main-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #FFFFFF; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid #D9D3C2; }
.btn-dark { background: var(--ink); color: #FFFFFF; }
.btn-zap { background: var(--whatsapp); color: #FFFFFF; }

/* Hero */
.hero {
  background: #FFFFFF;
  padding: 72px 0 88px;
}
.hero .wrap {
  display: flex;
  gap: 56px;
  align-items: center;
}
.hero-copy { flex: 1.1; display: flex; flex-direction: column; gap: 22px; }
.eyebrow-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  background: #F7EFDB;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
}
.hero h1 { font-size: 44px; line-height: 1.15; max-width: 560px; }
.hero p.lead { font-size: 17px; color: var(--text-muted); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.hero-art { flex: 1; display: flex; justify-content: center; }

/* Trust strip */
.trust {
  background: var(--ink);
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  flex-wrap: wrap;
  gap: 24px;
}
.trust .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; width: 100%; }
.trust-item { display: flex; flex-direction: column; gap: 4px; color: #FFFFFF; }
.trust-item strong { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; }
.trust-item span { font-size: 13px; color: #B7BACB; }

/* Section generic */
.section { padding: 80px 0; }
.section-head { display: flex; flex-direction: column; gap: 10px; max-width: 620px; margin-bottom: 40px; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--gold-dark); }
.section h2 { font-size: 32px; }

/* Services grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card h3 { font-size: 18px; }
.card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.55; }
.card-dark { background: var(--ink); }
.card-dark h3, .card-dark span { color: #FFFFFF; }
.card-dark p { color: #B7BACB; }
.card-dark .link-gold { color: var(--gold); font-weight: 600; font-size: 14px; }

/* About / mission-vision */
.about-grid { display: flex; gap: 56px; }
.about-copy { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.about-copy p { font-size: 15.5px; color: var(--text-muted); line-height: 1.65; max-width: 480px; }
.mv-stack { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.mv-card { border-radius: 14px; padding: 26px 28px; }
.mv-card h3 { font-size: 17px; margin-bottom: 8px; }
.mv-card p { font-size: 14.5px; color: #7A765F; line-height: 1.6; }
.mv-card.gold-tint { background: #FBF6E8; }
.mv-card.grey-tint { background: #F4F2EA; }

/* Team / owner */
.team {
  display: flex;
  align-items: center;
  gap: 44px;
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avatar span { font-family: 'Fraunces', serif; font-size: 36px; color: #FFFFFF; }
.team-copy { display: flex; flex-direction: column; gap: 8px; max-width: 620px; }
.team-copy h3 { font-size: 24px; }
.team-copy p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* CTA band */
.cta-band {
  background: var(--gold);
  padding: 64px 0;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 28px; color: #FFFFFF; max-width: 520px; }

/* Simple page hero (interior pages) */
.page-head { background: var(--gold); padding: 56px 0; }
.page-head h1 { font-size: 34px; color: #FFFFFF; }

.prose { max-width: 760px; display: flex; flex-direction: column; gap: 28px; }
.prose p { font-size: 15.5px; color: var(--text-muted); line-height: 1.7; }
.prose h3 { font-size: 20px; margin-bottom: 4px; }
.prose .block { display: flex; flex-direction: column; gap: 8px; }

.back-link {
  display: inline-flex;
  align-self: flex-start;
}

/* Services list (interior page) */
.service-item { display: flex; flex-direction: column; gap: 6px; padding: 22px 0; border-bottom: 1px solid var(--card-border); }
.service-item:last-child { border-bottom: none; }
.service-item h3 { font-size: 19px; }
.service-item p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* Contact form */
.contact-grid { display: flex; gap: 56px; }
.contact-form { flex: 1.3; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 16px; }
.field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--card-border);
  background: #FFFFFF;
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: 3px solid var(--gold-dark);
  outline-offset: 1px;
  border-color: var(--gold-dark);
}
.field textarea { resize: vertical; min-height: 140px; }
.contact-side { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-card h3 { font-size: 16px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--text-muted); }
.form-note { font-size: 13px; color: #9A9788; }

/* Footer */
.site-footer { background: var(--ink); padding: 44px 0; margin-top: auto; }
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-plate {
  width: 38px; height: 38px; border-radius: 8px; background: #FFFFFF;
  display: flex; align-items: center; justify-content: center; padding: 4px;
}
.footer-brand span { font-size: 13px; color: #B7BACB; }
.footer-nav { display: flex; gap: 28px; font-size: 13.5px; color: #B7BACB; flex-wrap: wrap; }

/* WhatsApp floating button */
.zap-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  z-index: 40;
}

/* Responsive */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero .wrap, .about-grid, .contact-grid, .team { flex-direction: column; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .trust .wrap { justify-content: flex-start; gap: 32px; }
  .form-row { flex-direction: column; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
