:root {
  --ink: #0f1d2c;
  --ink-soft: #2d3e50;
  --paper: #fafaf7;
  --paper-2: #f3f1ec;
  --line: #d8d4ca;
  --accent: #b08d57;
  --accent-strong: #8a6d3f;
  --text: #1a2433;
  --text-dim: #57606e;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

header.site { position: sticky; top: 0; background: rgba(250, 250, 247, 0.96); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); z-index: 50; }
header.site .container { display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; }
.logo { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: -0.5px; color: var(--ink); }
.logo small { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 2px; color: var(--text-dim); display: block; text-transform: uppercase; margin-top: 2px; }
nav.primary { display: flex; gap: 28px; }
nav.primary a { font-size: 14px; font-weight: 500; color: var(--text); transition: color .2s; }
nav.primary a:hover { color: var(--accent); }
.lang-switch { display: flex; gap: 4px; align-items: center; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-dim); }
.lang-switch a { padding: 4px 8px; border-radius: 4px; transition: all .15s; }
.lang-switch a.active { background: var(--ink); color: white; }
.lang-switch a:hover { color: var(--accent); }
.lang-switch a.active:hover { color: white; }
.cta-btn { background: var(--ink); color: white; padding: 10px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.3px; transition: background .2s; display: inline-block; cursor: pointer; border: none; }
.cta-btn:hover { background: var(--accent); }
.cta-btn.outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.cta-btn.outline:hover { background: var(--ink); color: white; }

.hero { padding: 80px 0 100px; position: relative; overflow: hidden; background: radial-gradient(circle at 80% 20%, rgba(176, 141, 87, 0.08) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(15, 29, 44, 0.04) 0%, transparent 50%), var(--paper); }
.hero .container { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.hero .eyebrow { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: 56px; line-height: 1.08; letter-spacing: -1px; color: var(--ink); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.hero p.lead { font-size: 18px; line-height: 1.6; color: var(--text-dim); max-width: 580px; margin-bottom: 36px; font-weight: 300; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .actions .cta-btn { padding: 14px 28px; font-size: 14px; }
.hero .visual { aspect-ratio: 4/5; border-radius: 4px; position: relative; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(15, 29, 44, 0.35); }
.hero .visual picture, .hero .visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15, 29, 44, 0.1) 0%, rgba(15, 29, 44, 0.55) 60%, rgba(15, 29, 44, 0.85) 100%); }
.hero .visual .visual-overlay { position: absolute; bottom: 32px; left: 32px; right: 32px; z-index: 2; }
.hero .visual .visual-line { display: block; color: white; font-family: var(--serif); font-size: 26px; line-height: 1.2; font-style: italic; opacity: 0.95; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }

.gallery { padding: 0 0 100px; background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
.g-item { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.g-item picture, .g-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.g-item:hover img { transform: scale(1.04); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15, 29, 44, 0.85) 100%); }
.g-item figcaption { position: absolute; bottom: 24px; left: 28px; right: 28px; color: white; font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.3; z-index: 2; }
.hero-badges { display: flex; gap: 22px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-badges .b { font-size: 12px; color: var(--text-dim); }
.hero-badges .b strong { display: block; color: var(--ink); font-size: 20px; font-family: var(--serif); font-weight: 600; margin-bottom: 2px; }

.trust { background: var(--paper-2); padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust .container { text-align: center; }
.trust p { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink); font-weight: 500; }

.why { padding: 100px 0 80px; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head .eyebrow { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 14px; display: block; }
.section-head h2 { font-family: var(--serif); font-size: 40px; line-height: 1.15; font-weight: 500; color: var(--ink); letter-spacing: -0.5px; margin-bottom: 18px; }
.section-head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-head p { font-size: 17px; color: var(--text-dim); font-weight: 300; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-radius: 4px; overflow: hidden; }
.why-card { background: var(--paper); padding: 40px 32px; }
.why-card .icon { width: 48px; height: 48px; border: 1px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 24px; }
.why-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.25; margin-bottom: 12px; color: var(--ink); }
.why-card p { color: var(--text-dim); font-size: 15px; line-height: 1.65; }

.services { padding: 100px 0; background: var(--ink); color: var(--paper); }
.services .section-head h2 { color: var(--paper); }
.services .section-head p { color: rgba(250, 250, 247, 0.7); }
.services .section-head .eyebrow { color: var(--accent); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 1100px; margin: 0 auto; }
.svc-card.full { grid-column: 1 / -1; }
.svc-card { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); padding: 32px 28px; border-radius: 4px; transition: all .25s; display: flex; flex-direction: column; }
.svc-card:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--accent); transform: translateY(-2px); }
.svc-card.featured { background: rgba(176, 141, 87, 0.12); border-color: var(--accent); }
.svc-card .tier { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.svc-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.2; margin-bottom: 6px; }
.svc-card .price { font-family: var(--serif); font-size: 17px; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.svc-card p { color: rgba(250, 250, 247, 0.78); font-size: 14px; line-height: 1.65; margin-bottom: 18px; flex: 1; }
.svc-card ul { list-style: none; }
.svc-card ul li { font-size: 13px; color: rgba(250, 250, 247, 0.85); padding: 5px 0 5px 22px; position: relative; line-height: 1.5; }
.svc-card ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.process { padding: 100px 0; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 24px; left: 8%; right: 8%; height: 1px; background: var(--line); }
.step { text-align: center; position: relative; z-index: 2; padding: 0 12px; }
.step .num { width: 48px; height: 48px; border-radius: 50%; background: var(--paper); border: 2px solid var(--ink); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); }
.step h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.step p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.faq { padding: 100px 0; background: var(--paper-2); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-item summary { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; padding: 4px 0; line-height: 1.3; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--sans); font-size: 28px; color: var(--accent); font-weight: 300; line-height: 1; transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 16px 0 4px; color: var(--text-dim); font-size: 15px; line-height: 1.7; }

.cta-final { padding: 100px 0; text-align: center; color: white; position: relative; overflow: hidden; background: var(--ink); }
.cta-final .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.cta-final .cta-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15, 29, 44, 0.92), rgba(15, 29, 44, 0.85) 50%, rgba(176, 141, 87, 0.4)); z-index: 1; }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { font-family: var(--serif); font-size: 44px; line-height: 1.15; font-weight: 500; letter-spacing: -0.5px; margin-bottom: 18px; max-width: 820px; margin-left: auto; margin-right: auto; }
.cta-final h2 em { font-style: italic; color: var(--accent); }
.cta-final p { font-size: 17px; color: rgba(255, 255, 255, 0.78); max-width: 640px; margin: 0 auto 36px; font-weight: 300; line-height: 1.6; }
.cta-final .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-form { max-width: 720px; margin: 0 auto; text-align: left; }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); border-radius: 4px; color: white; font-family: var(--sans); font-size: 14px; font-weight: 400; transition: all .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form textarea { resize: vertical; margin-bottom: 16px; font-family: var(--sans); }
.contact-form .cta-btn { background: var(--accent); padding: 16px 36px; font-size: 15px; cursor: pointer; }
.contact-form .cta-btn:hover { background: white; color: var(--ink); }
.contact-form .form-note { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; }
.contact-form .form-success { background: rgba(176, 141, 87, 0.15); border: 1px solid var(--accent); padding: 16px; border-radius: 4px; margin-top: 18px; color: white; font-size: 14px; text-align: center; }
.contact-form input:invalid:not(:placeholder-shown) { border-color: rgba(248, 113, 113, 0.5); }

footer.site { background: var(--ink); color: rgba(250, 250, 247, 0.7); padding: 64px 0 32px; }
footer.site .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
footer.site h5 { font-family: var(--serif); font-size: 18px; color: white; font-weight: 500; margin-bottom: 16px; }
footer.site .brand .logo { color: white; margin-bottom: 16px; }
footer.site .brand .logo small { color: rgba(255, 255, 255, 0.5); }
footer.site .brand p { font-size: 14px; line-height: 1.65; max-width: 320px; }
footer.site ul { list-style: none; }
footer.site ul li { padding: 4px 0; }
footer.site ul li a { font-size: 14px; transition: color .2s; }
footer.site ul li a:hover { color: var(--accent); }
footer.site .bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 12px; color: rgba(255, 255, 255, 0.5); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Legal pages */
.legal { padding: 60px 0 100px; max-width: 820px; margin: 0 auto; }
.legal h1 { font-family: var(--serif); font-size: 38px; font-weight: 500; margin-bottom: 24px; color: var(--ink); }
.legal h2 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin: 32px 0 12px; color: var(--ink); }
.legal p { margin-bottom: 14px; color: var(--text-dim); line-height: 1.7; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal ul li { margin-bottom: 6px; color: var(--text-dim); line-height: 1.7; }
.legal a { color: var(--accent); }
.legal .last-update { font-size: 13px; color: var(--text-dim); font-style: italic; margin-bottom: 32px; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .hero .visual { aspect-ratio: 16/10; }
  .why-grid, .svc-grid { grid-template-columns: 1fr; }
  .svc-card.full { grid-column: auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline::before { display: none; }
  footer.site .grid { grid-template-columns: 1fr 1fr; }
  nav.primary { display: none; }
  .section-head h2, .cta-final h2 { font-size: 30px; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
}
