/* ===== Clarice Cassou — Original Layout Dividers (Clean & Static) ===== */
@font-face {
  font-family: 'Sion';
  src: url('fonts/Sion.woff2') format('woff2'),
       url('fonts/Sion.woff') format('woff'),
       url('fonts/Sion.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Colors and global styles */
:root {
  --pink: #E83F6F;
  --blue: #007AFF;
  --cream: #F9F7F6;
  --ink: #18181B;
  --muted: #6B7280;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--cream); color: var(--ink); font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif; }
a { color: inherit; }

.bg-arrows {
  background-image: url('assets/bg-arrows.jpg');
  background-repeat: repeat;
  background-size: 160px 120px;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.header { position: sticky; top: 0; z-index: 50; background: rgba(249,247,246,0.86); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.wordmark { font-family: 'Sion', sans-serif; letter-spacing: 0.15em; font-size: 20px; display: inline-flex; gap: 8px; line-height: 1; }
.wordmark .c1 { color: var(--blue); }
.wordmark .c2 { color: var(--pink); }

.nav { display: none; gap: 24px; font-size: 14px; color: #333; }
.language-switch { font-size: 13px; color: #999; letter-spacing: 0.05em; }
.language-switch a { color: inherit; text-decoration: none; margin: 0 4px; }
.language-switch a:hover { opacity: .65; }

.hero { padding: 72px 0 60px; position: relative; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; font-weight: 750; }
.hero p { font-size: clamp(16px, 2.5vw, 20px); color: #3f3f46; max-width: 720px; }
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 16px; padding: 12px 20px; border: 1px solid rgba(0,0,0,0.08); background: linear-gradient(90deg, var(--blue), var(--pink)); color: white; font-weight: 600; text-decoration: none; }

.section { padding: 68px 0; }
.section h2 { font-size: 28px; font-weight: 700; margin: 0; }
.section p.lead { color: #3f3f46; max-width: 820px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.card { background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.08); border-radius: 20px; padding: 18px; transition: transform .2s ease, box-shadow .2s ease; cursor: pointer; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.06); }
.card h3 { font-size: 18px; margin: 0 0 6px; }
.card .icon { width: 36px; height: 36px; object-fit: contain; margin-right: 8px; vertical-align: middle; }
.card .summary { color: #424242; }
.card .more { display: none; color: #505050; margin-top: 10px; font-size: 15px; }
.card.expanded .more { display: block; }

/* Divider styles — clean and original layout */
.divider {
  margin: 28px auto;
  overflow: hidden;
}

.divider img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 26px;
  object-fit: contain;
}

/* Removed divider-bg rules for simplicity */

/* Contact and footer */
.contact { background: rgba(255,255,255,0.86); border: 1px solid rgba(0,0,0,0.08); border-radius: 24px; padding: 20px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.form input, .form textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.12); background: white; font-size: 15px; }
.form textarea { grid-column: 1 / -1; min-height: 140px; }
.form .actions { display: flex; align-items: center; gap: 12px; }
.form .send { background: linear-gradient(90deg, var(--blue), var(--pink)); color: white; border: none; padding: 12px 18px; border-radius: 16px; font-weight: 700; cursor: pointer; }

.footer { text-align: center; font-size: 14px; color: #666; padding: 28px 0 48px; }
.footer a { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(0,0,0,0.25); }
.footer small { display: block; margin-top: 6px; color: #7a7a7a; }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 880px) {
  .nav { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .wordmark { font-size: 18px; }
  .hero { padding-top: 52px; }
}
