@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&display=swap'); @import "tailwindcss"; @import "tw-animate-css"; @custom-variant dark (&:is(.dark *)); @theme inline { --radius-sm: calc(var(--radius) - 4px); --radius-md: calc(var(--radius) - 2px); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) + 4px); --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); --color-card-foreground: var(--card-foreground); --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); --color-secondary: var(--secondary); --color-secondary-foreground: var(--secondary-foreground); --color-muted-foreground: var(--muted-foreground); --color-border: var(--border); --color-input: var(--input); --color-ring: var(--ring); } :root { --ink: #12202c; --ink-soft: #203544; --paper: #f7f5f0; --paper-deep: #ede9e2; --terracotta: #bf6247; --terracotta-dark: #a64f39; --sand: #d8b58b; --muted: #758089; --line: rgba(18, 32, 44, 0.15); --white: #fffdfa; --radius: 0.75rem; --background: var(--paper); --foreground: var(--ink); --card: var(--white); --card-foreground: var(--ink); --primary: var(--ink); --primary-foreground: var(--white); --secondary: var(--paper-deep); --secondary-foreground: var(--ink); --muted-foreground: var(--muted); --border: var(--line); --input: var(--line); --ring: var(--terracotta); } * { box-sizing: border-box; } html { scroll-behavior: smooth; scroll-padding-top: 24px; } body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; } body, button, a { cursor: default; } a, button { cursor: pointer; } a { color: inherit; text-decoration: none; } button { font: inherit; } @layer base { * { border-color: var(--border); } body { background: var(--background); color: var(--foreground); } } @layer components { .container { width: 100%; max-width: 1240px; margin: 0 auto; padding-left: 32px; padding-right: 32px; } } .site-shell { overflow: hidden; } .scroll-to-top { position: fixed; z-index: 30; right: 24px; bottom: 24px; display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: var(--white); background: var(--ink); box-shadow: 0 10px 25px rgba(18,32,44,.23); opacity: 0; pointer-events: none; transform: translateY(13px); transition: opacity .22s ease, transform .22s ease, background .22s ease; } .scroll-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); } .scroll-to-top:hover { background: var(--terracotta); } .container { position: relative; z-index: 1; } .site-header { position: absolute; z-index: 20; top: 0; width: 100%; color: var(--white); } .header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 90px; } .brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; } .brand > span:last-child { display: flex; flex-direction: column; line-height: 1; gap: 5px; } .brand strong { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; letter-spacing: -0.02em; } .brand small { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; opacity: .63; } .official-logo { width: 52px; height: 52px; object-fit: contain; object-position: center; filter: drop-shadow(0 4px 7px rgba(0,0,0,.14)); } .official-logo-compact { width: 42px; height: 42px; } .mark { position: relative; display: inline-block; width: 30px; height: 30px; } .mark span { position: absolute; display: block; width: 20px; height: 20px; border: 1px solid currentColor; transform: rotate(45deg); } .mark span:first-child { left: 0; top: 0; } .mark span:last-child { right: 0; bottom: 0; opacity: .45; } .main-nav { display: flex; align-items: center; gap: 29px; font-size: 12px; letter-spacing: .01em; } .main-nav > a:not(.nav-cta) { opacity: .78; transition: opacity .2s ease; } .main-nav > a:not(.nav-cta):hover { opacity: 1; } .nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; transition: background .2s ease, border .2s ease, transform .2s ease; } .nav-cta:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); transform: translateY(-1px); } .menu-toggle { display: none; color: var(--white); background: transparent; border: 0; } .hero { position: relative; min-height: 760px; background: var(--ink); color: var(--white); } .hero-grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 90px 90px; mask-image: linear-gradient(90deg, black, transparent 80%); } .hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 84% 40%, rgba(191,98,71,.22), transparent 28%), linear-gradient(110deg, transparent 40%, rgba(255,255,255,.02) 40%, transparent 41%); } .hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); align-items: center; gap: 8%; min-height: 760px; padding-top: 82px; } .hero-copy { max-width: 610px; } .section-label { display: flex; align-items: center; gap: 11px; text-transform: uppercase; letter-spacing: .19em; font-size: 9px; font-weight: 700; color: var(--terracotta); } .hero .section-label { color: #df8b6e; } .section-label-line { display: inline-block; width: 31px; height: 1px; background: currentColor; } h1, h2, h3, p { margin: 0; } h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: -.04em; } h1 { margin-top: 28px; font-size: clamp(55px, 6vw, 84px); line-height: .99; } h1 em, h2 em { color: var(--terracotta); font-style: italic; } .hero-lead { max-width: 430px; margin-top: 30px; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.6; } .hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 38px; } .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; font-size: 12px; font-weight: 600; padding: 15px 22px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; } .button:hover { transform: translateY(-2px); } .button-primary { background: var(--terracotta); color: var(--white); box-shadow: 0 9px 25px rgba(191,98,71,.2); } .button-primary:hover { background: #cc6e50; box-shadow: 0 12px 28px rgba(191,98,71,.3); } .button-light { background: var(--white); color: var(--ink); margin-top: 30px; } .button-coral { background: var(--terracotta); color: var(--white); margin-top: 31px; box-shadow: 0 12px 30px rgba(10, 16, 24, .2); } .text-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.34); padding-bottom: 5px; font-size: 12px; transition: color .2s ease, border .2s ease; } .text-link:hover { color: var(--white); border-color: var(--white); } .dark-link { color: var(--ink); border-color: rgba(18,32,44,.4); } .dark-link:hover { color: var(--terracotta); border-color: var(--terracotta); } .hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 69px; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.5; } .hero-proof strong { color: rgba(255,255,255,.88); font-weight: 500; } .proof-avatars { display: flex; align-items: center; } .proof-avatars span { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 8px; letter-spacing: .05em; } .proof-avatars span + span { margin-left: -6px; background: var(--terracotta); border-color: var(--terracotta); font-size: 16px; } .hero-visual { position: relative; justify-self: end; width: min(100%, 450px); } .hero-image-frame { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 220px 220px 4px 4px; box-shadow: 0 24px 50px rgba(0,0,0,.24); } .hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: none; filter: saturate(.87) contrast(1.05); } .hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(18,32,44,.07), transparent 50%, rgba(18,32,44,.3)); } .hero-note { position: absolute; left: 25px; bottom: 25px; display: flex; gap: 9px; align-items: flex-start; padding: 13px 15px; background: rgba(18,32,44,.8); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.15); border-radius: 4px; color: rgba(255,255,255,.78); font-size: 10px; line-height: 1.35; } .hero-note svg { color: #df8b6e; margin-top: 2px; } .hero-note strong { color: var(--white); font-weight: 500; } .hero-stamp { position: absolute; right: -50px; bottom: 43px; width: 108px; height: 108px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; border-radius: 50%; color: var(--ink); background: var(--sand); transform: rotate(-9deg); } .hero-stamp span { font-family: 'Playfair Display', serif; font-size: 23px; font-style: italic; line-height: .9; } .hero-stamp small { margin-top: 9px; text-transform: uppercase; letter-spacing: .11em; font-size: 7px; line-height: 1.25; } .scroll-cue { position: absolute; bottom: 32px; left: calc(50% - 620px); display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .16em; font-size: 8px; transform: rotate(-90deg) translateX(-100%); transform-origin: left bottom; } .scroll-line { display: block; width: 47px; height: 1px; background: currentColor; } .section-pad { padding: 126px 0; } .intro { background: var(--paper); } .intro-grid { display: grid; grid-template-columns: 1fr 2.2fr; gap: 8%; } .intro-side { display: flex; flex-direction: column; justify-content: space-between; } .intro-index { margin-top: auto; color: var(--terracotta); font-family: 'Playfair Display', serif; font-size: 35px; } .intro-index span { color: var(--muted); font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: .12em; } .intro-content { max-width: 795px; } h2 { font-size: clamp(42px, 5vw, 65px); line-height: 1.03; } .intro-content h2 { margin-top: 22px; } .intro-large { max-width: 685px; margin-top: 39px; color: #35434c; font-family: 'Playfair Display', serif; font-size: 24px; line-height: 1.43; } .intro-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: end; margin-top: 48px; } .intro-bottom p { color: var(--muted); font-size: 13px; line-height: 1.75; } .intro-bottom .text-link { justify-self: start; } .photo-story { background: var(--white); } .photo-story-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 10%; align-items: center; } .photo-story-copy { max-width: 410px; } .photo-story-copy h2 { margin-top: 22px; } .photo-story-copy > p { margin-top: 28px; color: var(--muted); font-size: 14px; line-height: 1.75; } .photo-story-signature { display: flex; align-items: center; gap: 12px; margin-top: 39px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 8px; line-height: 1.35; } .photo-story-signature > span:first-child { display: grid; place-items: center; width: 39px; height: 39px; border: 1px solid var(--terracotta); border-radius: 50%; color: var(--terracotta); font-family: 'Playfair Display', serif; font-size: 14px; font-style: italic; letter-spacing: 0; } .photo-story-images { position: relative; min-height: 485px; } .story-photo { position: absolute; margin: 0; overflow: hidden; background: var(--paper-deep); } .story-photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.03); transition: transform .45s cubic-bezier(.23,1,.32,1); } .story-photo:hover img { transform: scale(1.04); } .story-photo figcaption { position: absolute; left: 18px; bottom: 16px; padding: 7px 10px; background: rgba(18,32,44,.8); color: var(--white); backdrop-filter: blur(7px); font-size: 9px; } .story-photo-main { top: 0; right: 0; width: 67%; height: 420px; } .story-photo-main img { object-position: center; } .story-photo-small { left: 0; bottom: 0; width: 49%; height: 245px; border: 10px solid var(--white); border-left: 0; } .story-photo-small img { object-position: center; } .about-lawyer { background: var(--ink); color: var(--white); } .about-lawyer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 12%; align-items: center; } .about-lawyer-image { position: relative; width: min(100%, 410px); aspect-ratio: 4 / 5; justify-self: center; overflow: hidden; border-radius: 200px 200px 3px 3px; } .about-lawyer-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 58%, rgba(18,32,44,.46)); } .about-lawyer-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: none; filter: saturate(.82) contrast(1.06); } .about-lawyer-badge { position: absolute; z-index: 1; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; background: rgba(18,32,44,.83); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); } .about-lawyer-badge span { color: #df8b6e; font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; } .about-lawyer-badge small { color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .13em; font-size: 7px; line-height: 1.25; } .about-lawyer-copy { max-width: 520px; } .about-lawyer-copy .section-label { color: #df8b6e; } .about-lawyer-copy h2 { margin-top: 22px; } .about-lawyer-copy h2 em { color: #df8b6e; } .about-lawyer-copy > p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.75; } .about-lawyer-copy .about-lead { margin-top: 30px; color: rgba(255,255,255,.88); font-family: 'Playfair Display', serif; font-size: 22px; line-height: 1.4; } .about-lawyer-copy > p:not(.about-lead) { margin-top: 20px; } .about-points { display: flex; flex-wrap: wrap; gap: 12px 23px; margin-top: 31px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .1em; font-size: 8px; } .about-points span { display: flex; align-items: center; gap: 7px; } .about-points strong { color: #df8b6e; font-size: 10px; font-weight: 500; } .areas { background: var(--paper-deep); } .section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 47px; } .section-heading h2 { margin-top: 20px; } .section-heading > p { max-width: 275px; color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 3px; } .areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; } .area-card { display: flex; flex-direction: column; min-height: 490px; padding: 29px 28px 26px; transition: transform .25s ease, box-shadow .25s ease; } .area-card:hover { transform: translateY(-7px); box-shadow: 0 18px 35px rgba(18,32,44,.12); } .area-terracotta { background: var(--terracotta); color: var(--white); } .area-ink { background: var(--ink); color: var(--white); } .area-sand { background: var(--sand); color: var(--ink); } .card-topline { display: flex; justify-content: space-between; align-items: center; font-size: 11px; opacity: .72; } .card-eyebrow { margin-top: 58px; color: currentColor; opacity: .67; text-transform: uppercase; letter-spacing: .15em; font-size: 9px; font-weight: 700; } .area-card h3 { margin-top: 14px; font-size: 40px; line-height: .99; } .area-card h3 span { display: block; } .card-description { max-width: 280px; margin-top: 23px; color: currentColor; opacity: .73; font-size: 12px; line-height: 1.65; } .area-card ul { display: grid; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; font-size: 11px; } .area-card li { display: flex; align-items: center; gap: 8px; opacity: .86; } .area-card li svg { flex: 0 0 auto; } .card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 24px; border-top: 1px solid currentColor; border-color: rgba(255,255,255,.27); font-size: 11px; font-weight: 600; } .area-sand .card-link { border-color: rgba(18,32,44,.25); } .method { background: var(--ink); color: var(--white); } .method-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 14%; } .method-title { max-width: 400px; } .method-title h2 { margin-top: 22px; } .method-title h2 em { color: #df8b6e; } .method-title > p { margin-top: 27px; color: rgba(255,255,255,.57); font-size: 13px; line-height: 1.7; } .steps { display: grid; gap: 0; align-self: center; } .step { display: grid; grid-template-columns: 68px 1fr; gap: 30px; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.17); } .step:last-child { border-bottom: 1px solid rgba(255,255,255,.17); } .step-number { color: #df8b6e; font-size: 10px; letter-spacing: .12em; padding-top: 4px; } .step h3 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0; } .step p { max-width: 380px; margin-top: 10px; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.6; } .trust { background: var(--paper); } .trust-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 14%; align-items: center; } .trust-quote { position: relative; padding-left: 51px; } .quote-mark { position: absolute; left: 0; top: -15px; color: var(--terracotta); font-family: 'Playfair Display', serif; font-size: 105px; line-height: 1; } blockquote { max-width: 525px; margin: 0; font-family: 'Playfair Display', serif; font-size: clamp(31px, 3.3vw, 45px); line-height: 1.15; letter-spacing: -.04em; } .quote-author { display: flex; align-items: center; gap: 10px; margin-top: 34px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; } .author-line { display: inline-block; width: 30px; height: 1px; background: var(--terracotta); } .quote-author span:not(.author-line) { color: var(--terracotta); } .trust-details .section-label { margin-bottom: 31px; } .trust-list { display: grid; gap: 25px; } .trust-list > div { display: flex; gap: 15px; } .trust-list svg { flex: 0 0 auto; color: var(--terracotta); margin-top: 2px; } .trust-list span { display: flex; flex-direction: column; gap: 5px; } .trust-list strong { font-size: 13px; font-weight: 600; } .trust-list small { color: var(--muted); font-size: 11px; line-height: 1.5; } .blog { background: var(--paper); } .blog-heading { align-items: end; } .blog-heading h2 { margin-top: 20px; } .blog-filters { display: flex; align-items: center; gap: 22px; margin: 38px 0 25px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); } .blog-filter-label { color: var(--muted); text-transform: uppercase; letter-spacing: .15em; font-size: 8px; font-weight: 700; white-space: nowrap; } .blog-filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; } .blog-filter-buttons button { padding: 8px 13px; border: 1px solid transparent; border-radius: 999px; color: var(--muted); background: transparent; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; transition: color .2s ease, background .2s ease, border .2s ease, transform .2s ease; } .blog-filter-buttons button:hover { color: var(--ink); border-color: var(--line); transform: translateY(-1px); } .blog-filter-buttons button.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); } .blog-empty { padding: 42px 0 10px; color: var(--muted); font-size: 13px; } .blog-load-more { display: flex; justify-content: center; margin-top: 43px; } .blog-load-more button { display: inline-flex; align-items: center; gap: 10px; padding: 13px 18px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); background: transparent; font-size: 11px; font-weight: 700; transition: color .2s ease, background .2s ease, transform .2s ease; } .blog-load-more button span { color: var(--muted); font-size: 9px; font-weight: 400; } .blog-load-more button:hover { color: var(--white); background: var(--ink); transform: translateY(-2px); } .blog-load-more button:hover span { color: rgba(255,255,255,.65); } .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; } .blog-card { min-width: 0; } .blog-image { position: relative; height: 196px; overflow: hidden; background: var(--paper-deep); } .blog-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 47%, rgba(18,32,44,.32)); } .blog-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transition: transform .4s cubic-bezier(.23,1,.32,1); } .blog-card:hover .blog-image img { transform: scale(1.04); } .blog-image span { position: absolute; z-index: 1; left: 13px; bottom: 12px; padding: 6px 8px; color: var(--white); background: var(--terracotta); text-transform: uppercase; letter-spacing: .1em; font-size: 8px; } .blog-meta { display: flex; align-items: center; gap: 8px; margin-top: 17px; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 8px; } .blog-meta .meta-dot { width: 3px; height: 3px; background: var(--terracotta); } .blog-card h3 { max-width: 320px; margin-top: 13px; font-size: 25px; line-height: 1.13; letter-spacing: -.03em; } .blog-card > p { max-width: 310px; margin-top: 11px; color: var(--muted); font-size: 11px; line-height: 1.6; } .blog-link { display: inline-flex; margin-top: 20px; padding-top: 13px; border-color: var(--line); color: var(--ink); } .faq { background: var(--paper-deep); } .faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16%; } .faq-grid h2 { margin-top: 22px; } .faq-intro { max-width: 275px; margin-top: 28px; color: var(--muted); font-size: 13px; line-height: 1.65; } .faq-list { align-self: center; } .faq-item { border-top: 1px solid var(--line); } .faq-item:last-child { border-bottom: 1px solid var(--line); } .faq-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; padding: 22px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-size: 14px; font-weight: 600; } .faq-item button span { display: flex; flex-direction: column; gap: 4px; } .faq-item button small { color: var(--terracotta); text-transform: uppercase; letter-spacing: .13em; font-size: 8px; font-weight: 700; } .faq-item button svg { flex: 0 0 auto; color: var(--terracotta); transition: transform .25s ease; } .faq-item.is-open button svg { transform: rotate(180deg); } .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; } .faq-answer p { overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.65; } .faq-item.is-open .faq-answer { grid-template-rows: 1fr; } .faq-item.is-open .faq-answer p { padding: 0 32px 22px 0; } .contact-cta { position: relative; overflow: hidden; padding: 112px 0 117px; background: var(--terracotta); color: var(--white); text-align: center; } .contact-cta .section-label { justify-content: center; color: rgba(255,255,255,.7); } .contact-inner { display: flex; flex-direction: column; align-items: center; } .contact-cta h2 { margin-top: 20px; } .contact-cta h2 em { color: var(--ink); } .contact-cta p { max-width: 400px; margin-top: 23px; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.6; } .contact-ornament { position: absolute; right: 7%; top: 20%; color: rgba(255,255,255,.14); transform: rotate(15deg); } .contact-meta { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: rgba(255,255,255,.7); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; } .meta-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; } .article-page { min-height: 100vh; background: var(--paper); color: var(--ink); } .article-header { background: var(--ink); color: var(--white); } .article-header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; } .article-brand { display: inline-flex; align-items: center; gap: 11px; } .article-brand img { width: 42px; height: 42px; object-fit: contain; } .article-brand span { display: flex; flex-direction: column; gap: 3px; line-height: 1; } .article-brand strong { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; } .article-brand small { color: rgba(255,255,255,.57); text-transform: uppercase; letter-spacing: .18em; font-size: 8px; } .article-back { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 11px; transition: color .2s ease; } .article-back:hover { color: var(--white); } .article-hero { padding: 92px 0 100px; background: var(--ink); color: var(--white); } .article-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 11%; align-items: center; } .article-hero-copy { max-width: 650px; } .article-kicker { display: flex; align-items: center; gap: 10px; color: #df8b6e; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 700; } .article-kicker .meta-dot { background: #df8b6e; } .article-kicker span:last-child { color: rgba(255,255,255,.45); font-weight: 400; } .article-hero h1 { max-width: 680px; margin-top: 27px; font-size: clamp(46px, 5.7vw, 78px); line-height: 1.02; } .article-hero-copy > p { max-width: 545px; margin-top: 28px; color: rgba(255,255,255,.66); font-family: 'Playfair Display', serif; font-size: 21px; line-height: 1.42; } .article-reading { display: flex; align-items: center; gap: 8px; margin-top: 31px; color: rgba(255,255,255,.49); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; } .article-reading svg { color: #df8b6e; } .article-cover { width: min(100%, 410px); aspect-ratio: 4 / 5; justify-self: end; overflow: hidden; border-radius: 180px 180px 3px 3px; } .article-cover img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); } .article-body-section { padding: 100px 0 115px; background: var(--white); } .article-body-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 15%; } .article-aside { display: flex; flex-direction: column; gap: 19px; align-self: start; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 8px; line-height: 1.55; } .article-aside-line { width: 35px; height: 1px; background: var(--terracotta); } .article-content { max-width: 680px; } .article-content > p { color: #35434c; font-size: 16px; line-height: 1.85; } .article-content > p + p { margin-top: 25px; } .article-note { display: flex; flex-direction: column; gap: 9px; margin-top: 48px; padding: 20px 22px; border-left: 2px solid var(--terracotta); background: var(--paper); } .article-note strong { font-size: 12px; } .article-note span { color: var(--muted); font-size: 11px; line-height: 1.6; } .article-share { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 44px; padding-top: 23px; border-top: 1px solid var(--line); } .article-share > div:first-child { display: flex; flex-direction: column; gap: 5px; } .article-share-label { font-size: 12px; font-weight: 700; } .article-share small { color: var(--muted); font-size: 10px; line-height: 1.5; } .article-share-actions { display: flex; align-items: center; gap: 7px; } .article-share-actions a, .article-share-actions button { display: inline-flex; align-items: center; justify-content: center; gap: 6px; width: 34px; height: 34px; padding: 0; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; transition: color .2s ease, background .2s ease, border .2s ease, transform .2s ease; } .article-share-actions a:hover, .article-share-actions button:hover { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateY(-2px); } .article-share-actions button { width: auto; padding: 0 12px; border-radius: 999px; font: inherit; font-size: 10px; } .related-posts { padding: 86px 0 95px; background: var(--paper-deep); } .related-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; color: var(--terracotta); } .related-heading h2 { margin-top: 12px; color: var(--ink); font-size: clamp(31px, 4vw, 47px); } .related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 820px; } .related-card { display: block; padding: 0 0 25px; color: var(--ink); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; } .related-card:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(18,32,44,.1); } .related-card-image { position: relative; height: 210px; overflow: hidden; } .related-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(18,32,44,.35)); } .related-card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .4s cubic-bezier(.23,1,.32,1); } .related-card:hover .related-card-image img { transform: scale(1.04); } .related-card-image span { position: absolute; z-index: 1; left: 14px; bottom: 13px; padding: 6px 8px; color: var(--white); background: var(--terracotta); text-transform: uppercase; letter-spacing: .1em; font-size: 8px; } .related-card-meta { display: flex; align-items: center; gap: 8px; margin: 17px 20px 0; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 8px; } .related-card-meta .meta-dot { width: 3px; height: 3px; background: var(--terracotta); } .related-card h3 { margin: 12px 20px 0; font-size: 25px; line-height: 1.12; } .related-link { display: inline-flex; align-items: center; gap: 7px; margin: 20px 20px 0; padding-top: 12px; border-top: 1px solid var(--line); width: calc(100% - 40px); font-size: 10px; font-weight: 700; } .article-cta { background: var(--terracotta); color: var(--white); } .article-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding-top: 65px; padding-bottom: 65px; } .article-cta-label { color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; } .article-cta h2 { margin-top: 13px; font-size: clamp(35px, 4vw, 52px); } .article-cta h2 em { color: var(--ink); } .article-footer { background: #0c1822; color: rgba(255,255,255,.45); } .article-footer .container { display: flex; justify-content: space-between; padding-top: 20px; padding-bottom: 22px; font-size: 9px; } .article-footer a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.75); } .article-not-found { display: grid; place-items: start; align-content: center; gap: 18px; min-height: 100vh; padding: 35px; background: var(--paper); } .article-not-found .article-back { color: var(--ink); } .article-not-found h1 { font-size: clamp(42px, 6vw, 72px); } .article-not-found p { color: var(--muted); } .site-footer { background: #0c1822; color: var(--white); } .footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; min-height: 189px; } .brand-footer { justify-self: start; } .footer-top > p { color: rgba(255,255,255,.45); font-family: 'Playfair Display', serif; font-size: 18px; line-height: 1.25; } .footer-contact { display: flex; flex-direction: column; align-items: flex-start; justify-self: end; gap: 5px; font-size: 11px; } .footer-contact > span { color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .16em; font-size: 8px; margin-bottom: 5px; } .footer-contact a { color: rgba(255,255,255,.82); transition: color .2s ease; } .footer-contact a:hover { color: #df8b6e; } .footer-bottom { display: flex; justify-content: space-between; padding: 17px 0 22px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.32); font-size: 9px; } .reveal-up { animation: reveal-up .8s cubic-bezier(.23,1,.32,1) both; } .delay-1 { animation-delay: .12s; } @keyframes reveal-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 1050px) { .hero-inner { gap: 4%; } .hero-stamp { right: -15px; } .scroll-cue { left: 20px; } .method-grid, .trust-grid { gap: 8%; } .faq-grid { gap: 10%; } } @media (max-width: 760px) { .container { padding-left: 21px; padding-right: 21px; } .scroll-to-top { right: 16px; bottom: 16px; width: 39px; height: 39px; } .site-header { background: rgba(18,32,44,.28); backdrop-filter: blur(11px); } .header-inner { min-height: 72px; } .menu-toggle { display: grid; place-items: center; } .main-nav { position: absolute; top: 72px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid rgba(255,255,255,.15); background: rgba(12,24,34,.97); box-shadow: 0 12px 32px rgba(0,0,0,.2); } .main-nav.is-open { display: flex; } .main-nav > a { padding: 13px 10px; } .nav-cta { justify-content: center; margin-top: 7px; } .hero { min-height: auto; } .hero-inner { display: flex; flex-direction: column; align-items: stretch; gap: 52px; min-height: auto; padding-top: 144px; padding-bottom: 92px; } h1 { font-size: clamp(47px, 13vw, 70px); } .hero-lead { font-size: 15px; } .hero-proof { margin-top: 47px; } .hero-visual { width: 76%; max-width: 400px; align-self: center; } .hero-stamp { right: -28px; bottom: 24px; width: 92px; height: 92px; } .hero-stamp span { font-size: 20px; } .scroll-cue { display: none; } .section-pad { padding: 86px 0; } .intro-grid, .method-grid, .trust-grid, .faq-grid { display: flex; flex-direction: column; gap: 48px; } .intro-side { gap: 22px; } .intro-index { margin-top: 0; } .intro-large { margin-top: 28px; font-size: 21px; } .intro-bottom { display: flex; flex-direction: column; gap: 24px; margin-top: 30px; } .photo-story-grid { display: flex; flex-direction: column; align-items: stretch; gap: 38px; } .photo-story-copy { max-width: none; } .photo-story-images { min-height: 400px; } .story-photo-main { width: 78%; height: 345px; } .story-photo-small { width: 53%; height: 205px; } .about-lawyer-grid { display: flex; flex-direction: column; gap: 40px; align-items: stretch; } .about-lawyer-image { width: 78%; max-width: 360px; align-self: center; } .about-lawyer-copy { max-width: none; } .about-lawyer-copy .about-lead { font-size: 20px; } .section-heading { display: block; } .section-heading > p { margin-top: 23px; } .areas-grid { grid-template-columns: 1fr; gap: 14px; } .area-card { min-height: 450px; } .card-eyebrow { margin-top: 45px; } .method-title { max-width: none; } .steps { margin-top: 12px; } .trust-quote { padding-left: 40px; } .quote-mark { font-size: 84px; } .trust-details .section-label { margin-bottom: 25px; } .faq-intro { margin-top: 20px; } .blog-heading { display: block; } .blog-heading > .text-link { margin-top: 24px; } .blog-filters { display: block; margin-top: 31px; } .blog-filter-buttons { margin-top: 13px; gap: 6px; } .blog-filter-buttons button { padding: 7px 10px; font-size: 8px; } .blog-grid { grid-template-columns: 1fr; gap: 40px; } .blog-image { height: 220px; } .blog-load-more { margin-top: 34px; } .article-header-inner { min-height: 72px; } .article-brand img { width: 36px; height: 36px; } .article-back { font-size: 10px; } .article-hero { padding: 63px 0 75px; } .article-hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 42px; } .article-hero h1 { font-size: clamp(43px, 12vw, 62px); } .article-hero-copy > p { font-size: 19px; } .article-cover { width: 76%; max-width: 330px; align-self: center; } .article-body-section { padding: 75px 0 82px; } .article-body-grid { display: flex; flex-direction: column; gap: 31px; } .article-aside { flex-direction: row; align-items: center; gap: 12px; } .article-aside-line { width: 25px; } .article-content > p { font-size: 15px; line-height: 1.78; } .article-share { display: block; } .article-share-actions { margin-top: 16px; } .related-posts { padding: 70px 0 78px; } .related-heading { align-items: start; } .related-grid { grid-template-columns: 1fr; gap: 20px; } .related-card-image { height: 205px; } .article-cta-inner { display: flex; flex-direction: column; align-items: flex-start; padding-top: 53px; padding-bottom: 58px; } .article-footer .container { flex-direction: column; gap: 10px; } .contact-ornament { right: -26px; top: 27%; } .contact-meta { flex-direction: column; gap: 7px; } .meta-dot { display: none; } .footer-top { display: flex; flex-direction: column; align-items: flex-start; gap: 27px; padding-top: 48px; padding-bottom: 45px; } .footer-top > p { font-size: 16px; } .footer-contact { align-self: stretch; } .footer-bottom { display: flex; flex-direction: column; gap: 8px; padding-bottom: 20px; } } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }Agora quero que você seja extremamente crítico. Ignore todo o trabalho que acabou de fazer e avalie o site como se você fosse um concorrente tentando encontrar motivos para o cliente NÃO contratar a empresa. Encontre: - pontos fracos - mensagens confusas - promessas fracas - excesso de texto - falta de provas - CTAs ruins - problemas de confiança - problemas de UX - problemas mobile - problemas de SEO - problemas técnicos - problemas de velocidade - elementos com aparência amadora - qualquer coisa que faça o site parecer uma agência comum. Não elogie. Quero uma lista dos 20 problemas mais importantes, classificados por impacto na conversão. Depois corrija automaticamente os 10 problemas de maior impacto.

Blog