/* ==========================================================================
   IAC Films — main stylesheet
   Dark cinematic design · Anton display + Inter body · gold accent
   ========================================================================== */

:root {
	--black: #0b0b0b;
	--white: #f5f4f0;
	--gold: #c9a24d;
	--muted: rgba(255, 255, 255, 0.6);
	--faint: rgba(255, 255, 255, 0.4);
	--line: rgba(255, 255, 255, 0.1);
	--display: 'Anton', 'Inter', sans-serif;
	--body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--black);
	color: var(--white);
	font-family: var(--body);
	font-weight: 300;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--gold); color: var(--black); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.text-gold, .iac-gold { color: var(--gold); }

.iac-kicker {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 16px;
}

.iac-btn {
	display: inline-block;
	border: 1px solid var(--gold);
	padding: 16px 40px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: var(--gold);
	transition: all 0.3s ease;
	cursor: pointer;
	background: transparent;
}
.iac-btn:hover { background: var(--gold); color: #000; }

/* Reveal-on-scroll animation */
.iac-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.iac-reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 40;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 20px 24px;
	pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.site-header__label {
	width: 112px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.25em;
	color: rgba(255, 255, 255, 0.8);
}

.site-header__logo { display: block; width: 144px; }
.site-header__logo img { width: 100%; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6)); }

.site-header__menu-btn {
	width: 112px;
	text-align: right;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.25em;
	color: #fff;
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.3s;
	font-family: var(--body);
}
.site-header__menu-btn:hover { color: var(--gold); }

@media (min-width: 768px) {
	.site-header { padding: 28px 40px; }
	.site-header__label, .site-header__menu-btn { width: 160px; }
	.site-header__logo { width: 192px; }
}

/* ==========================================================================
   Menu overlay
   ========================================================================== */

.menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 30;
	background: rgba(11, 11, 11, 0.98);
	padding: 112px 24px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	opacity: 0;
	transition: opacity 0.35s ease;
}
.menu-overlay.is-open { opacity: 1; }
.menu-overlay[hidden] { display: flex; visibility: hidden; }
.menu-overlay.is-open[hidden] { visibility: visible; }

.menu-overlay__inner {
	flex: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

.menu-overlay__nav { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.menu-overlay__nav a {
	font-family: var(--display);
	font-size: clamp(40px, 7vw, 72px);
	line-height: 1.05;
	text-transform: uppercase;
	color: #fff;
	transition: color 0.3s, transform 0.4s ease;
	opacity: 0;
	transform: translateY(24px);
}
.menu-overlay.is-open .menu-overlay__nav a { opacity: 1; transform: none; }
.menu-overlay__nav a:hover { color: var(--gold); }
.menu-overlay__nav a:nth-child(2) { transition-delay: 0.08s; }
.menu-overlay__nav a:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay__nav a:nth-child(4) { transition-delay: 0.22s; }
.menu-overlay__nav a:nth-child(5) { transition-delay: 0.29s; }
.menu-overlay__nav a:nth-child(6) { transition-delay: 0.36s; }

.menu-overlay__side { display: flex; flex-direction: column; justify-content: center; gap: 48px; }
.menu-overlay__socials li { margin: 8px 0; }
.menu-overlay__socials a { font-size: 20px; font-weight: 500; transition: color 0.3s; }
.menu-overlay__socials a:hover { color: var(--gold); }
.menu-overlay__news-title { font-size: 24px; font-weight: 600; margin: 0 0 16px; }

.iac-inline-form {
	display: flex;
	max-width: 420px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.iac-inline-form:focus-within { border-color: var(--gold); }
.iac-inline-form input {
	flex: 1;
	background: transparent;
	border: 0;
	outline: none;
	color: #fff;
	padding: 12px 0;
	font-family: var(--body);
}
.iac-inline-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.iac-inline-form button {
	background: none;
	border: 0;
	color: var(--gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.25em;
	padding-left: 16px;
	cursor: pointer;
	font-family: var(--body);
}

.menu-overlay__footer {
	margin-top: 40px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-top: 1px solid var(--line);
	padding-top: 24px;
}
.menu-overlay__footer img { width: 112px; opacity: 0.8; }
.menu-overlay__footer span { font-size: 11px; letter-spacing: 0.25em; color: var(--faint); }

@media (min-width: 768px) {
	.menu-overlay { padding: 112px 40px 40px; }
	.menu-overlay__inner { grid-template-columns: 1fr 1fr; }
	.menu-overlay__side { padding-left: 64px; }
	.menu-overlay__socials a { font-size: 24px; }
}

/* ==========================================================================
   Hero (front page)
   ========================================================================== */

.hero { position: relative; height: 100svh; overflow: hidden; }

.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4));
}

.hero__works {
	position: absolute;
	right: 24px;
	bottom: 32px;
	z-index: 2;
	text-align: right;
}
.hero__works li { margin: 6px 0; }
.hero__work-link {
	display: block;
	font-family: var(--display);
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #fff;
	transition: color 0.3s;
}
.hero__work-link:hover { color: var(--gold); }
.hero__works:hover .hero__work-link:not(:hover) { color: rgba(255, 255, 255, 0.4); }
.hero__director {
	margin-left: 8px;
	font-family: var(--body);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.5);
	vertical-align: middle;
}
.hero__viewall {
	display: inline-block;
	margin-top: 20px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: var(--gold);
	transition: color 0.3s;
}
.hero__viewall:hover { color: #fff; }

.hero__scroll {
	position: absolute;
	left: 24px;
	bottom: 32px;
	z-index: 2;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.6);
	display: none;
}

@media (min-width: 768px) {
	.hero__works { right: 40px; bottom: 48px; }
	.hero__work-link { font-size: 20px; }
	.hero__scroll { display: block; left: 40px; bottom: 48px; }
}

/* ==========================================================================
   Tagline / CTA
   ========================================================================== */

.tagline { padding: 96px 24px; }
.tagline__text {
	font-family: var(--display);
	font-size: clamp(26px, 4.5vw, 56px);
	line-height: 1.15;
	text-transform: uppercase;
	max-width: 1100px;
	margin: 0;
}

.cta { padding: 96px 24px; text-align: center; }
.cta h2 {
	font-family: var(--display);
	font-size: clamp(34px, 6vw, 72px);
	text-transform: uppercase;
	margin: 0 0 32px;
}

@media (min-width: 768px) {
	.tagline { padding: 144px 40px; }
	.cta { padding: 144px 40px; }
}

/* ==========================================================================
   Work grid + cards
   ========================================================================== */

.work-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	padding: 0 4px;
}

.work-card { position: relative; display: block; overflow: hidden; }
.work-card__imgwrap { aspect-ratio: 16 / 10; width: 100%; overflow: hidden; background: #141414; }
.work-card__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.work-card:hover .work-card__imgwrap img { transform: scale(1.05); }
.work-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 60%);
	transition: background 0.5s;
}
.work-card:hover .work-card__overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.45) 60%);
}

.work-card__meta {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 20px;
	transform: translateY(6px);
	transition: transform 0.5s ease;
}
.work-card:hover .work-card__meta { transform: none; }
.work-card__cat {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.25em;
	color: var(--gold);
}
.work-card__meta h3 {
	font-family: var(--display);
	font-size: clamp(18px, 2.6vw, 30px);
	line-height: 1.15;
	text-transform: uppercase;
	margin: 6px 0 4px;
}
.work-card__sub { font-size: 12px; letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.7); }

@media (min-width: 768px) {
	.work-grid { grid-template-columns: 1fr 1fr; }
	.work-card__meta { padding: 28px; }
}

.after-grid { margin-top: 96px; }
.empty-note { padding: 24px 24px 0; color: var(--muted); }

/* ==========================================================================
   Page head (archives)
   ========================================================================== */

.page-head { padding: 112px 24px 0; }
.page-head--tight { padding-top: 80px; }
.page-head h1 {
	font-family: var(--display);
	font-size: clamp(44px, 8vw, 96px);
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.page-head__sub { max-width: 560px; color: var(--muted); margin: 0; }

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 32px;
	margin-top: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}
.filters a {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.25em;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.3s;
}
.filters a:hover { color: #fff; }
.filters a.is-active { color: var(--gold); }

@media (min-width: 768px) {
	.page-head { padding: 144px 40px 0; }
	.page-head--tight { padding-top: 80px; }
}

/* ==========================================================================
   Single project
   ========================================================================== */

.project-hero {
	position: relative;
	height: 70svh;
	background-size: cover;
	background-position: center;
}
.project-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--black), rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4));
}
.project-hero__meta { position: absolute; left: 24px; right: 24px; bottom: 40px; }
.project-hero__meta h1 {
	font-family: var(--display);
	font-size: clamp(32px, 6vw, 72px);
	line-height: 1.02;
	text-transform: uppercase;
	max-width: 1000px;
	margin: 8px 0 12px;
}
.project-hero__director {
	font-size: 14px;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s;
}
.project-hero__director:hover { color: var(--gold); }

.project-video { padding: 64px 24px 0; }
.project-video__frame {
	max-width: 1100px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	background: #000;
}
.project-video__frame iframe { width: 100%; height: 100%; border: 0; }

.project-body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding: 64px 24px;
}
.project-body__text { max-width: 560px; font-size: 18px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); }
.project-body__text p:first-child { margin-top: 0; }

.credits { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0; }
.credits > div {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}
.credits > div:last-child { border-bottom: 0; }
.credits dt { font-size: 14px; color: rgba(255, 255, 255, 0.5); }
.credits dd { margin: 0; font-size: 14px; font-weight: 500; text-align: right; }

.next-project {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 21 / 9;
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 24px;
	overflow: hidden;
}
.next-project::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	transition: background 0.5s;
}
.next-project:hover::before { background: rgba(0, 0, 0, 0.35); }
.next-project > * { position: relative; }
.next-project__title {
	font-family: var(--display);
	font-size: clamp(24px, 5vw, 60px);
	text-transform: uppercase;
	transition: color 0.3s;
}
.next-project:hover .next-project__title { color: var(--gold); }

@media (min-width: 768px) {
	.project-hero { height: 85svh; }
	.project-hero__meta { left: 40px; right: 40px; }
	.project-video { padding: 64px 40px 0; }
	.project-body { grid-template-columns: 1fr 1fr; padding: 96px 40px; }
}

/* ==========================================================================
   Directors
   ========================================================================== */

.director-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	padding: 64px 4px 0;
}

.director-card { position: relative; display: block; overflow: hidden; }
.director-card__imgwrap {
	aspect-ratio: 4 / 5;
	background: #141414;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.director-card__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.director-card:hover .director-card__imgwrap img { transform: scale(1.05); }
.director-card__mono {
	font-family: var(--display);
	font-size: clamp(72px, 10vw, 144px);
	color: rgba(255, 255, 255, 0.1);
	transition: color 0.5s;
}
.director-card:hover .director-card__mono { color: rgba(201, 162, 77, 0.3); }
.director-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 55%);
}
.director-card__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.director-card__meta h3 {
	font-family: var(--display);
	font-size: clamp(22px, 3vw, 30px);
	text-transform: uppercase;
	margin: 0;
	transition: color 0.3s;
}
.director-card:hover .director-card__meta h3 { color: var(--gold); }
.director-card__meta span { font-size: 12px; letter-spacing: 0.25em; color: rgba(255, 255, 255, 0.6); }

@media (min-width: 640px) { .director-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .director-grid { grid-template-columns: 1fr 1fr 1fr; } }

.director-head {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 112px 24px 0;
}
.director-head__photo {
	width: 160px;
	height: 192px;
	flex-shrink: 0;
	background: #141414;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.director-head__photo img { width: 100%; height: 100%; object-fit: cover; }
.director-head__info h1 {
	font-family: var(--display);
	font-size: clamp(40px, 7vw, 72px);
	line-height: 1;
	text-transform: uppercase;
	margin: 8px 0;
}
.director-head__aka { font-size: 18px; letter-spacing: 0.15em; color: var(--muted); margin: 0 0 16px; }
.director-head__bio { max-width: 560px; color: rgba(255, 255, 255, 0.75); }
.director-head__ig {
	display: inline-block;
	margin-top: 16px;
	font-size: 14px;
	letter-spacing: 0.2em;
	color: var(--gold);
	transition: color 0.3s;
}
.director-head__ig:hover { color: #fff; }

@media (min-width: 768px) {
	.director-head { flex-direction: row; align-items: flex-end; padding: 144px 40px 0; }
	.director-head__photo { width: 240px; height: 288px; }
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-statements { padding: 128px 24px 96px; display: flex; flex-direction: column; gap: 96px; }
.about-statement { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.about-statement img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.about-statement p {
	font-family: var(--display);
	font-size: clamp(22px, 3.6vw, 46px);
	line-height: 1.15;
	text-transform: uppercase;
	margin: 0;
	width: 100%;
}

.about-caps { border-top: 1px solid var(--line); padding: 96px 24px; }
.about-cap { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 96px; }
.about-cap h2 {
	font-family: var(--display);
	font-size: clamp(34px, 5vw, 60px);
	text-transform: uppercase;
	margin: 0;
}
.gold-rule { display: block; height: 4px; width: 80px; background: var(--gold); margin-top: 16px; }
.about-cap p { max-width: 460px; color: rgba(255, 255, 255, 0.75); }
.about-cap img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.about-directors { border-top: 1px solid var(--line); padding: 96px 24px; }
.about-directors__list { display: flex; flex-wrap: wrap; gap: 24px 48px; }
.about-directors__list a { transition: color 0.3s; }
.about-directors__list a:hover { color: var(--gold); }
.about-directors__list span {
	font-family: var(--display);
	font-size: clamp(22px, 3vw, 38px);
	text-transform: uppercase;
}
.about-directors__list em {
	font-style: normal;
	margin-left: 12px;
	font-size: 13px;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
	.about-statements { padding: 176px 40px 96px; gap: 144px; }
	.about-statement { flex-direction: row; gap: 64px; }
	.about-statement.is-flip { flex-direction: row-reverse; }
	.about-statement img, .about-statement p { width: 50%; }
	.about-caps { padding: 96px 40px; }
	.about-cap { grid-template-columns: 1fr 1fr; }
	.about-cap.is-flip img { order: -1; }
	.about-directors { padding: 96px 40px; }
}

/* Team members (About page) */
.about-team { border-top: 1px solid var(--line); padding: 96px 24px; }
.about-team__title {
	font-family: var(--display);
	font-size: clamp(28px, 4vw, 52px);
	text-transform: uppercase;
	margin: 12px 0 56px;
	max-width: 720px;
}
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.team-card__imgwrap { aspect-ratio: 3 / 4; overflow: hidden; background: rgba(255,255,255,0.04); display:flex; align-items:center; justify-content:center; }
.team-card__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.team-card:hover .team-card__imgwrap img { transform: scale(1.05); }
.team-card__meta { padding: 18px 0 0; }
.team-card__meta h3 {
	font-family: var(--display);
	font-size: clamp(18px, 2vw, 26px);
	text-transform: uppercase;
	margin: 0;
}
.team-card__role { display: block; margin-top: 6px; font-size: 11px; letter-spacing: 0.25em; color: var(--gold); }
.team-card__ig { display: inline-block; margin-top: 12px; font-size: 10px; letter-spacing: 0.25em; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.team-card__ig:hover { color: var(--gold); }

@media (min-width: 768px) {
	.about-team { padding: 96px 40px; }
	.team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
	.team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Photographer gallery (single page) */
.photo-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4px;
	padding: 0 24px;
}
.photo-gallery__item {
	position: relative;
	display: block;
	padding: 0;
	border: none;
	background: none;
	cursor: zoom-in;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.photo-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, opacity 0.4s; }
.photo-gallery__item:hover img { transform: scale(1.06); opacity: 0.85; }

@media (min-width: 768px) { .photo-gallery { grid-template-columns: repeat(3, 1fr); padding: 0 40px; } }
@media (min-width: 1100px) { .photo-gallery { grid-template-columns: repeat(4, 1fr); } }

/* Lightbox */
.iac-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.92);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.iac-lightbox[hidden] { display: none; }
.iac-lightbox.is-open { opacity: 1; }
.iac-lightbox__stage { position: relative; max-width: 90vw; max-height: 86vh; margin: 0; }
.iac-lightbox__stage img { max-width: 90vw; max-height: 82vh; display: block; object-fit: contain; }
.iac-lightbox__stage figcaption { text-align: center; margin-top: 12px; font-size: 12px; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); }
.iac-lightbox__close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
}
.iac-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #fff;
	font-size: 48px;
	line-height: 1;
	cursor: pointer;
	padding: 12px;
	transition: color 0.3s;
}
.iac-lightbox__nav:hover { color: var(--gold); }
.iac-lightbox__prev { left: 12px; }
.iac-lightbox__next { right: 12px; }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact { padding: 128px 24px 96px; }
.contact__title {
	font-family: var(--display);
	font-size: clamp(38px, 7vw, 90px);
	line-height: 1.02;
	text-transform: uppercase;
	max-width: 1000px;
	margin: 0;
}
.contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 64px;
	margin-top: 64px;
}
.contact__details > div { margin-bottom: 40px; }
.contact__details ul li { margin: 8px 0; }
.contact__details a { transition: color 0.3s; }
.contact__details a:hover { color: var(--gold); }
.contact__email { font-size: clamp(20px, 3vw, 28px); font-weight: 500; }
.contact__loc { font-size: 20px; margin: 0; }
.contact__muted { color: var(--muted); margin: 4px 0 0; }
.contact__error { color: #f87171; }
.contact__thanks { font-family: var(--display); font-size: 30px; text-transform: uppercase; margin: 0 0 12px; }

.contact__form label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: rgba(255, 255, 255, 0.5);
	margin: 32px 0 8px;
}
.contact__form input, .contact__form textarea {
	width: 100%;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	padding: 12px 0;
	outline: none;
	font-family: var(--body);
	font-size: 16px;
	resize: vertical;
	transition: border-color 0.3s;
}
.contact__form input:focus, .contact__form textarea:focus { border-color: var(--gold); }
.contact__form .iac-btn { margin-top: 32px; }

@media (min-width: 768px) {
	.contact { padding: 176px 40px 96px; }
	.contact__grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { border-top: 1px solid var(--line); padding: 64px 24px; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.site-footer ul li { margin: 8px 0; }
.site-footer a { transition: color 0.3s; }
.site-footer a:hover { color: var(--gold); }
.site-footer__email { font-size: 20px; font-weight: 500; }
.site-footer__muted { color: var(--muted); margin: 8px 0 0; }

.site-footer__brand {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.site-footer__brand img { width: 160px; }
.site-footer__brand span { font-size: 11px; letter-spacing: 0.25em; color: var(--faint); text-align: center; }

@media (min-width: 768px) {
	.site-footer { padding: 64px 40px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
	.site-footer__brand img { width: 224px; }
}

/* ==========================================================================
   Generic content + WordPress admin bar offset
   ========================================================================== */

.generic-content { padding: 64px 24px 96px; max-width: 800px; }

body.admin-bar .site-header { top: 32px; }
body.admin-bar .menu-overlay { padding-top: 144px; }
