/* licence.broker */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0f0f0f; color: #e8e0d0; font-family: 'Lato', sans-serif; line-height: 1.7; }
.hero { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; position: relative; }
.corner { position: absolute; width: 24px; height: 24px; }
.tl { top: 2rem; left: 2rem; border-top: 1px solid #c9a96e; border-left: 1px solid #c9a96e; }
.tr { top: 2rem; right: 2rem; border-top: 1px solid #c9a96e; border-right: 1px solid #c9a96e; }
.bl { bottom: 2rem; left: 2rem; border-bottom: 1px solid #c9a96e; border-left: 1px solid #c9a96e; }
.br { bottom: 2rem; right: 2rem; border-bottom: 1px solid #c9a96e; border-right: 1px solid #c9a96e; }
.est { font-family: 'Inter', sans-serif; font-size: 0.6rem; color: #c9a96e; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3.5rem); color: #dbb778; }
.gold-rule { width: 60px; height: 1px; background: #c9a96e; margin: 1rem 0; }
.gold-rule.wide { width: 120px; margin: 0 auto 1.5rem; }
.tagline { font-size: 0.85rem; color: #7a7060; letter-spacing: 0.1em; }
.services { max-width: 550px; margin: 0 auto; padding: 3rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.service-panel { background: #1a1a1a; border: 1px solid rgba(201,169,110,0.4); border-radius: 4px; padding: 2rem; width: 100%; }
.service-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #dbb778; margin-bottom: 0.5rem; }
.service-text { font-size: 0.8rem; color: #a89e8e; }
.diamond { width: 8px; height: 8px; background: #c9a96e; transform: rotate(45deg); }
.portfolio { max-width: 600px; margin: 0 auto; padding: 2rem 1.5rem; text-align: center; }
.portfolio-row { display: flex; gap: 1rem; justify-content: center; }
.portfolio-card { background: #1a1a1a; border: 1px solid rgba(201,169,110,0.3); padding: 1.5rem 1rem; border-radius: 4px; flex: 1; }
.card-label { font-family: 'Inter', sans-serif; font-size: 0.7rem; color: #c9a96e; letter-spacing: 0.1em; }
.inquire { text-align: center; padding: 3rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.inquire-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: #dbb778; }
.inquire-brand { font-size: 0.6rem; color: #7a7060; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
