@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:wght@300;400;500;600&display=swap') ;

:root {
	--color-bg : #0b0f14 ;
	--color-bg-soft : #1a1410 ;
	--color-cream : #f6f0e3 ;
	--color-cream-soft : #efe6d5 ;
	--color-gold : #c9a45c ;
	--color-gold-dark : #8a6a2d ;
	--color-brown : #3a2b1a ;
	--color-brown-dark : #2a1d12 ;
	--color-text : #f6f0e3 ;
	--color-text-dark : #1a1410 ;
	--font-serif : "Cormorant", ui-serif, serif ;
	--font-sans : "Inter", ui-sans-serif, system-ui, sans-serif ;
	--shadow-soft : 0 16px 30px rgba(0, 0, 0, 0.2) ;
	--shadow-deep : 0 24px 48px rgba(0, 0, 0, 0.35) ;
	--radius : 6px ;
	--max-width : 1180px ;
}

* { box-sizing : border-box ; }

html, body { margin : 0 ; padding : 0 ; }

body {
	font-family : var(--font-serif) ;
	background : var(--color-bg) ;
	color : var(--color-text) ;
	-webkit-font-smoothing : antialiased ;
	-moz-osx-font-smoothing : grayscale ;
}

h1, h2, h3, h4 { font-family : var(--font-serif) ; font-weight : 400 ; margin : 0 ; }
p { margin : 0 ; }
a { color : inherit ; text-decoration : none ; }

[data-lang] { display : none ; }
[data-lang].is-active { display : initial ; }
