/* =========================
   RESET
========================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body,
h1,
h2,
p,
ul,
figure {
	margin: 0;
}

img {
	display: block;
	max-width: 100%;
}

ul {
	padding: 0;
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

address {
	font-style: normal;
}

/* =========================
   ROOT
========================= */
:root {
	--bg: #0b0b0b;
	--bg-soft: #111111;

	--text: #eae3d6;
	--text-soft: #a6a19a;

	/* linhas douradas sutis */
	--line: rgba(184, 154, 94, 0.25);

	--accent: #b89a5e;

	--container-width: 1200px;
	--container-narrow: 760px;

	--section-space: 8rem;
	--hero-space-top: 10rem;
	--hero-space-bottom: 8rem;

	--radius: 0px;

	--font-title: "Playfair Display", "Times New Roman", serif;
	--font-body: "Inter", "Segoe UI", sans-serif;
}

.practice,
.coordination,
.contact,
.domain {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

/* =========================
   BASE
========================= */

html {
	background-color: var(--bg);
}

body {
	min-height: 100vh;

	/* FUNDO ARQUITETÔNICO */
	background:
		linear-gradient(rgba(11, 11, 11, 0.92),
			rgba(11, 11, 11, 0.96)),
		url("./bg-architecture.jpeg");

	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;

	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0.01em;

	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.page {
	position: relative;
}

.container {
	width: min(100% - 3rem, var(--container-width));
	margin: 0 auto;
}

.container-narrow {
	width: min(100% - 3rem, var(--container-narrow));
}

section {
	position: relative;
	padding: var(--section-space) 0;
}

section+section .container {
	border-top: 1px solid var(--line);
	padding-top: var(--section-space);
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
.eyebrow,
.name,
.hero-mantra {
	text-wrap: balance;
}

h1 {
	font-family: var(--font-title);
	font-size: clamp(3.5rem, 8vw, 7rem);
	font-weight: 500;
	line-height: 0.95;
	letter-spacing: -0.03em;
	max-width: 9ch;
}

h2 {
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-soft);
	margin-bottom: 2rem;
}

p {
	max-width: 70ch;
}

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.84rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 1.8rem;
}

.hero-mantra {
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-top: 2.7rem;
}

.name {
	font-family: var(--font-title);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: 0.9rem;
}

.role {
	font-family: var(--font-body);
	font-size: clamp(1.25rem, 1.6vw, 1.45rem);
	line-height: 1.65;
	color: var(--text-soft);
	max-width: 32ch;
	margin-top: 0.6rem;
}

/* =========================
   HERO
========================= */

.hero {
	padding-top: 20vh;
	padding-bottom: 6rem;
	min-height: 90vh;
	display: flex;
	align-items: flex-start;
}

.hero .container {
	border-top: none;
	padding-top: 0;
}

.hero h1 {
	margin-bottom: 1.5rem;
}

.hero::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: min(100% - 3rem, var(--container-width));
	height: 1px;
	background-color: var(--line);
}

/* =========================
   MANIFESTO
========================= */
.manifesto {
	padding-top: 6rem;
}

.manifesto-copy {
	display: grid;
	gap: 1rem;
}

.manifesto-copy p {
	font-family: var(--font-title);
	font-size: clamp(2rem, 3vw, 2.85rem);
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: -0.022em;
	max-width: 22ch;
	margin-bottom: 1.5rem;
}

/* =========================
   PRACTICE
========================= */

.practice-list {
	display: grid;
	gap: 1.25rem;
	max-width: 60rem;
}

.practice-list li {
	font-family: var(--font-title);
	font-size: clamp(1.3rem, 1.6vw, 1.6rem);
	line-height: 1.4;
	letter-spacing: -0.01em;
	margin-bottom: 1.8rem;
	color: var(--text);
	list-style: none;
}

.practice-list li::before {
	content: "—";
	color: var(--accent);
	margin-right: 0.8rem;
}

/* =========================
   COORDINATION
========================= */

.coordination-content {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 4.5rem;
	align-items: center;
	max-width: 1100px;
}

.profile-photo {
	width: 100%;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background-color: var(--bg-soft);
	border: 1px solid var(--line);
}

.profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%) contrast(1.05) brightness(0.92);
}

.coordination-text {
	max-width: 40rem;
}

.name {
	font-family: var(--font-title);
	font-size: clamp(2.8rem, 4vw, 4.4rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.03em;
	margin-bottom: 1.35rem;
	color: var(--text);
}

.role {
	font-family: var(--font-body);
	font-size: clamp(1.28rem, 1.6vw, 1.46rem);
	line-height: 1.8;
	color: var(--text-soft);
	max-width: 31ch;
	margin-top: 0.6rem;
}

/* =========================
   CONTACT
========================= */

.contact-title {
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.85rem;
	color: var(--accent);
	margin-bottom: 28px;
}

.contact a,
.contact p {
	display: block;
	margin-bottom: 14px;
	font-size: 1.05rem;
}

.contact-list {
	display: grid;
	gap: 1rem;
}

.contact-list p {
	font-size: 1rem;
	color: var(--text);
}

.contact-list a {
	color: var(--text);
	border-bottom: 1px solid rgba(184, 154, 94, 0.18);
	padding-bottom: 0.1rem;
	transition: color 180ms ease, border-color 180ms ease, letter-spacing 180ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
	color: var(--accent);
	border-color: rgba(184, 154, 94, 0.5);
	letter-spacing: 0.01em;
	outline: none;
}

/* =========================
   DOMAIN / PROPOSAL
========================= */

.domain-copy,
.proposal-copy {
	display: grid;
	gap: 1rem;
}

.domain-copy p:first-child {
	font-family: var(--font-title);
	font-size: clamp(1.7rem, 2.2vw, 2.2rem);
	letter-spacing: -0.02em;
	color: var(--accent);
}

.proposal-copy p {
	color: var(--text);
}

.domain-copy p:not(:first-child),
.proposal-copy p {
	max-width: 64ch;
}

/* =========================
   SELECTION
========================= */

::selection {
	background-color: rgba(184, 154, 94, 0.25);
	color: var(--text);
}

.divider {
	width: 100%;
	max-width: 900px;
	height: 1px;
	margin: 80px auto;
	background: linear-gradient(to right,
			transparent,
			rgba(200, 169, 107, 0.35),
			transparent);
}

/* =========================
   RESPONSIVE
========================= */



@media (max-width: 900px) {

	:root {
		--section-space: 5rem;
		--hero-space-top: 7rem;
		--hero-space-bottom: 5rem;
	}

	.hero {
		min-height: auto;
		align-items: flex-end;
	}

	.coordination-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		align-items: start;
	}

	.profile-photo {
		max-width: 300px;
	}

	.coordination-text {
		max-width: 100%;
	}
}

@media (max-width: 640px) {

	.container,
	.container-narrow {
		width: min(100% - 2rem, var(--container-width));
	}

	h1 {
		max-width: 11ch;
	}

	.manifesto-copy p {
		max-width: 100%;
	}

	.practice-list li {
		padding-left: 1rem;
	}

	.name {
		font-size: clamp(2.2rem, 10vw, 3.2rem);
	}

	.role {
		font-size: 1.1rem;
		line-height: 1.7;
	}
}