/*
Theme Name: Aadi Arts
Theme URI: https://aadiarts.in
Author: Aadi Arts
Description: Custom, fully responsive homepage theme for Aadi Arts — mural & sculpture studio. Edit contact details, photos and portfolio captions from Appearance → Customize → Aadi Arts Homepage.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aadi-arts
*/

/* =========================================================
   1. Tokens
   ========================================================= */
:root {
	--bg: #efe8db;
	--sand: #e7decf;
	--card: #f4efe7;
	--ink: #221d16;
	--ink-deep: #1a1610;
	--text: #5c5344;
	--text-soft: #7a705f;
	--gold: #a87c3d;
	--gold-bright: #d6a659;
	--gold-soft: #e2c089;
	--green: #1f7a54;
	--green-dark: #186244;
	--mint: #8ad9b3;
	--line: #cbc3b5;
	--line-soft: #d6d0c3;

	--serif: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
	--sans: "Jost", "Futura", "Helvetica Neue", Arial, sans-serif;

	--box: 1440px;
	--pad: clamp(20px, 3.9vw, 56px);
	--section: clamp(76px, 8.4vw, 120px);
	--header-h: 82px;
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   2. Base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--sans);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	color: var(--ink);
	line-height: 1.08;
	letter-spacing: -0.005em;
}
em { font-style: italic; }
address { font-style: normal; }
button, input, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
section[id] { scroll-margin-top: var(--header-h); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute; left: 12px; top: -60px; z-index: 1000;
	background: var(--ink); color: #fff; padding: 10px 16px;
}
.skip-link:focus { top: 12px; }

.container {
	width: 100%;
	max-width: var(--box);
	margin-inline: auto;
	padding-inline: var(--pad);
}
.section { padding-block: var(--section); }

/* =========================================================
   3. Type helpers
   ========================================================= */
.eyebrow {
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 22px;
	line-height: 1.4;
}
.eyebrow--light { color: var(--gold-bright); }

.h2 { font-size: clamp(38px, 4.45vw, 64px); }
.h2--md { font-size: clamp(34px, 3.9vw, 56px); }

/* =========================================================
   4. Buttons
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 0;
	font-family: var(--sans);
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn .dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--mint);
	flex: none;
}
.btn-sm { min-height: 41px; padding: 0 22px; font-size: 12px; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-gold { background: var(--gold-bright); color: var(--ink); font-weight: 500; }
.btn-gold:hover { background: #e2b46a; }
.btn-outline { border-color: rgba(34, 29, 22, .35); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.btn-outline--light { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-outline--light:hover { border-color: #fff; background: #fff; color: var(--ink); }
.btn:active { transform: translateY(1px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* =========================================================
   5. Header
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bg);
	transition: box-shadow .3s var(--ease);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .site-header { top: 0; } }
.is-scrolled .site-header { box-shadow: 0 8px 24px -18px rgba(34, 29, 22, .45); }

.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	height: var(--header-h);
}
.header-inner::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: rgba(34, 29, 22, .1);
}

.brand { display: flex; align-items: center; gap: 14px; color: var(--gold); flex: none; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-logo img { max-height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
	font-family: var(--serif);
	font-size: 27px;
	font-weight: 500;
	color: var(--ink);
	letter-spacing: .01em;
}
.brand-tag {
	margin-top: 5px;
	font-size: 9px;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--gold);
}

.main-nav { display: flex; align-items: center; }
.main-nav .menu { display: flex; align-items: center; gap: 39px; }
.main-nav .menu a {
	position: relative;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ink);
	padding: 6px 0;
}
.main-nav .menu a::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0;
	height: 1px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s var(--ease);
}
.main-nav .menu a:hover::after,
.main-nav .current-menu-item > a::after { transform: scaleX(1); }
.nav-cta { display: none; }

/* push the nav to the true centre on desktop */
@media (min-width: 1025px) {
	.main-nav { position: absolute; left: 50%; transform: translateX(-50%); }
}

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
}
.nav-toggle .bar {
	position: absolute; left: 11px; right: 11px;
	height: 1.5px;
	background: var(--ink);
	transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle .bar:nth-of-type(2) { top: 17px; }
.nav-toggle .bar:nth-of-type(3) { top: 26px; }
.nav-open .nav-toggle .bar:nth-of-type(2) { top: 21.5px; transform: rotate(45deg); }
.nav-open .nav-toggle .bar:nth-of-type(3) { top: 21.5px; transform: rotate(-45deg); }

/* =========================================================
   6. Hero
   ========================================================= */
.hero {
	display: grid;
	grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
	padding-block: 106px;
}
.hero-title {
	font-size: clamp(50px, 5.85vw, 84px);
	line-height: .94;
	margin-bottom: 44px;
}
.hero-title em { color: var(--gold); }
.hero-kicker { display: block; margin-bottom: 26px; }
.hero-lead {
	font-size: 18px;
	line-height: 1.66;
	max-width: 420px;
	margin-bottom: 32px;
}
.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 40px;
	margin-top: 33px;
	padding-top: 28px;
	border-top: 1px solid rgba(34, 29, 22, .12);
}
.hero-stats li { display: flex; flex-direction: column; }
.stat-num {
	font-family: var(--serif);
	font-size: 32px;
	line-height: 1.1;
	color: var(--ink);
}
.stat-label {
	margin-top: 6px;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-soft);
}

.hero-media {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-right: -34px;
}
.hero-img {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	aspect-ratio: 250 / 600;
	overflow: hidden;
	background: var(--sand);
	box-shadow: 0 46px 50px -34px rgba(34, 29, 22, .45);
}
.hero-img--tall { aspect-ratio: 250 / 660; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img::after,
.story-img::after {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255, 255, 255, .6);
	pointer-events: none;
}

/* =========================================================
   7. Marquee
   ========================================================= */
.marquee {
	background: var(--ink);
	overflow: hidden;
	padding-inline: 0;
}
.marquee-track {
	display: flex;
	width: max-content;
	animation: aadi-marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-list { display: flex; align-items: center; flex: none; }
.marquee-list li {
	font-family: var(--serif);
	font-style: italic;
	font-size: 27px;
	line-height: 72px;
	color: rgba(239, 232, 219, .92);
	white-space: nowrap;
	padding-left: 52px;
}
.marquee-list .marquee-star {
	display: flex;
	align-items: center;
	color: var(--gold-bright);
	padding-left: 56px;
}
.marquee-star svg { width: 20px; height: 20px; }
@keyframes aadi-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* =========================================================
   8. Section heads
   ========================================================= */
.section-head { margin-bottom: 52px; }
.section-head--split {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
}
.section-head--split .eyebrow { margin-bottom: 18px; }
.section-note {
	max-width: 340px;
	margin: 0 24px 8px 0;
	font-size: 15.5px;
	line-height: 1.7;
}
.section-head--center { text-align: center; max-width: 620px; margin-inline: auto; }
.section-sub { font-size: 16px; line-height: 1.75; margin: 22px auto 0; max-width: 570px; }

/* =========================================================
   9. Portfolio grid
   ========================================================= */
.works-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 22px;
}
.work {
	position: relative;
	overflow: hidden;
	background: var(--sand);
	height: 470px;
}
.work-1 { grid-column: span 7; }
.work-2 { grid-column: span 5; }
.work-3 { grid-column: span 5; height: 520px; }
.work-4 { grid-column: span 7; height: 520px; }
.work-5 { grid-column: span 5; height: 400px; }
.work-6 { grid-column: span 4; height: 400px; }
.work-7 { grid-column: span 3; height: 400px; }

.work img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.work::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(26, 22, 16, .62) 0%, rgba(26, 22, 16, .18) 32%, rgba(26, 22, 16, 0) 55%);
	pointer-events: none;
}
.work:hover img { transform: scale(1.045); }
.work figcaption {
	position: absolute;
	left: 22px; right: 22px; bottom: 20px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	color: #fff;
}
.work-label {
	font-size: 10.5px;
	font-weight: 400;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: 4px;
}
.work-title {
	font-family: var(--serif);
	font-size: 28px;
	line-height: 1.2;
}

/* =========================================================
   10. The craft
   ========================================================= */
.craft {
	background: var(--sand);
	padding-top: 118px;
	padding-bottom: 124px;
}
.craft .section-head { margin-bottom: 70px; }
.craft-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.craft-step {
	padding: 50px 36px 48px;
	min-height: 280px;
}
.craft-step + .craft-step { border-left: 1px solid var(--line); }
.step-num {
	display: block;
	font-family: var(--serif);
	font-size: 46px;
	line-height: 1;
	color: var(--gold);
	margin-bottom: 20px;
}
.step-title { font-size: 30px; font-weight: 500; margin-bottom: 16px; }
.craft-step p { font-size: 14.5px; line-height: 1.66; color: var(--text-soft); margin: 0; max-width: 272px; }

/* =========================================================
   11. Story
   ========================================================= */
.story {
	display: grid;
	grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
	gap: 72px;
	align-items: center;
}
.story-media { position: relative; }
.story-img {
	position: relative;
	aspect-ratio: 560 / 640;
	overflow: hidden;
	background: var(--sand);
	box-shadow: 0 40px 60px -30px rgba(34, 29, 22, .35);
}
.story-img::after { inset: 16px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.est-card {
	position: absolute;
	right: -34px;
	bottom: -40px;
	width: 240px;
	padding: 28px 32px 26px;
	background: var(--ink);
}
.est-year {
	font-family: var(--serif);
	font-size: 36px;
	line-height: 1.1;
	color: var(--gold-bright);
	margin: 0 0 8px;
}
.est-text { font-size: 13px; line-height: 1.55; color: rgba(239, 232, 219, .72); margin: 0; }

.story-copy { max-width: 660px; }
.story-copy .h2 { margin-bottom: 30px; }
.story-copy p { font-size: 17px; line-height: 1.72; max-width: 510px; margin-bottom: 1.5em; }
.story-copy .signature {
	font-family: var(--serif);
	font-style: italic;
	font-size: 25px;
	color: var(--ink);
	margin: 34px 0 0;
}

/* =========================================================
   12. Services (dark)
   ========================================================= */
.services {
	background: var(--ink);
	padding-top: 128px;
	padding-bottom: 126px;
}
.services .h2 { color: #fff; }
.services-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 28px;
	margin-bottom: 56px;
}
.services-head .eyebrow { margin-bottom: 18px; }
.services-head .btn { margin-bottom: 4px; }
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 56px 32px;
}
.service {
	border-top: 1px solid rgba(255, 255, 255, .16);
	padding-top: 38px;
}
.service-num {
	display: block;
	font-family: var(--serif);
	font-size: 27px;
	line-height: 1;
	color: var(--gold-bright);
	margin-bottom: 26px;
}
.service-title { font-size: 34px; font-weight: 500; color: #fff; margin-bottom: 18px; }
.service p { font-size: 15px; line-height: 1.73; color: rgba(239, 232, 219, .58); margin: 0; max-width: 390px; }

/* =========================================================
   13. CTA banner
   ========================================================= */
.cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
	padding-block: 80px;
	text-align: center;
	background-color: var(--ink);
	background-image: linear-gradient(rgba(40, 31, 20, .62), rgba(40, 31, 20, .62)), var(--cta-bg);
	background-size: cover;
	background-position: center;
}
.cta-inner { max-width: 700px; }
.cta-title {
	font-size: clamp(42px, 4.6vw, 66px);
	line-height: 1.04;
	color: #fff;
}
.cta-title em { display: block; color: var(--gold-soft); }
.cta-lead {
	font-size: 17px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .78);
	margin: 34px auto 30px;
	max-width: 640px;
}

/* =========================================================
   13b. Local (Lucknow) + FAQ
   ========================================================= */
.local {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 80px;
	align-items: start;
}
.local-copy .h2 { margin-bottom: 26px; }
.local-copy p { font-size: 17px; line-height: 1.72; max-width: 560px; margin-bottom: 1.3em; }
.local-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 32px; }
.local-links a {
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--green);
	border-bottom: 1px solid currentColor;
	padding-bottom: 4px;
	transition: color .2s;
}
.local-links a:hover { color: var(--ink); }
.local-areas { display: flex; flex-direction: column; gap: 36px; padding-top: 6px; }
.area-title { font-size: 26px; font-weight: 500; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--ink);
	padding: 8px 16px;
	border: 1px solid rgba(34, 29, 22, .2);
	background: rgba(255, 255, 255, .35);
}
.chips--quiet li { border-color: transparent; background: var(--sand); }

.faq { background: var(--sand); padding-block: var(--section); }
.faq-grid {
	display: grid;
	grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
	gap: 80px;
	align-items: start;
}
.faq-head { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-head p:last-child { font-size: 16px; margin: 20px 0 0; }
.faq-head a { color: var(--green); border-bottom: 1px solid currentColor; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 0;
	cursor: pointer;
	list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-size: 26px; font-weight: 500; line-height: 1.22; transition: color .2s; }
.faq-item summary:hover .faq-q { color: var(--gold); }
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before,
.faq-icon::after {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 50%;
	height: 1.5px;
	background: var(--gold);
	transition: transform .3s var(--ease);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-a p { font-size: 16px; line-height: 1.75; margin: -8px 0 28px; max-width: 680px; }

.contact-map {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 6;
	border: 1px solid #dbd6ce;
	background: var(--sand);
}
.contact-map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.3) sepia(.12); }

/* =========================================================
   14. Contact
   ========================================================= */
.contact {
	display: grid;
	grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
	gap: 80px;
	align-items: start;
	padding-top: 130px;
}
.contact-info .h2 { margin-bottom: 20px; }
.contact-lead { font-size: 16px; line-height: 1.75; max-width: 390px; margin-bottom: 44px; }
.contact-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	padding: 20px 4px 22px;
	border-bottom: 1px solid var(--line-soft);
	transition: padding .3s var(--ease);
}
.contact-list li:first-child .contact-row { padding-top: 4px; }
.contact-row--static { border-bottom: 0; }
.contact-label {
	grid-column: 1;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-soft);
	margin-bottom: 4px;
}
.contact-value {
	grid-column: 1;
	font-family: var(--serif);
	font-size: 27px;
	line-height: 1.2;
	color: var(--ink);
	overflow-wrap: anywhere;
}
.contact-arrow {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	font-size: 20px;
	color: var(--green);
	transition: transform .3s var(--ease);
}
a.contact-row:hover .contact-arrow { transform: translateX(6px); }

.contact-card {
	background: var(--card);
	border: 1px solid #dbd6ce;
	padding: 48px 48px 62px;
}
.card-title { font-size: 34px; font-weight: 500; margin-bottom: 10px; }
.card-sub { font-size: 14.5px; color: var(--text-soft); margin-bottom: 36px; }
.wa-form { display: flex; flex-direction: column; gap: 30px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; }
.field-label {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--text-soft);
	margin-bottom: 12px;
}
.field input,
.field textarea {
	width: 100%;
	padding: 4px 0 14px;
	border: 0;
	border-bottom: 1px solid #b5b0a8;
	border-radius: 0;
	background: transparent;
	font-size: 16px;
	font-weight: 400;
	color: var(--ink);
	outline: none;
	transition: border-color .25s var(--ease);
	-webkit-appearance: none;
	appearance: none;
}
.field textarea { resize: vertical; min-height: 82px; }
.field input::placeholder,
.field textarea::placeholder { color: #857c6d; opacity: 1; }
.field input:focus,
.field textarea:focus { border-bottom-color: var(--green); }
.wa-form .btn { align-self: flex-start; min-height: 46px; margin-top: 0; }
.form-error { margin: -12px 0 0; font-size: 14px; color: #a2412b; }

/* =========================================================
   15. Footer
   ========================================================= */
.site-footer {
	background: var(--ink-deep);
	color: rgba(239, 232, 219, .6);
	padding-top: 76px;
	padding-bottom: 36px;
}
.footer-top {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-name {
	font-family: var(--serif);
	font-size: 32px;
	color: #fff;
	margin: 0 0 26px;
	line-height: 1;
}
.gold-dot {
	display: inline-block;
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--gold-bright);
	vertical-align: middle;
	margin-left: 6px;
}
.footer-desc { font-size: 15px; line-height: 1.6; max-width: 360px; margin: 0; }
.footer-nap { margin-top: 26px; font-size: 14px; line-height: 1.85; color: rgba(239, 232, 219, .6); }
.footer-nap strong { font-weight: 400; color: rgba(239, 232, 219, .88); }
.footer-nap a { color: rgba(239, 232, 219, .8); transition: color .2s; }
.footer-nap a:hover { color: #fff; }
.footer-cols { display: flex; gap: 80px; }
.footer-head {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold-bright);
	margin: 0 0 16px;
}
.footer-col li + li { margin-top: 13px; }
.footer-col a {
	font-size: 13px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba(239, 232, 219, .78);
	transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 12px 24px;
	flex-wrap: wrap;
	padding-top: 26px;
	font-size: 13px;
	letter-spacing: .05em;
}
.footer-bottom p { margin: 0; }

/* Floating WhatsApp (phones only) */
.wa-float {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	display: none;
	align-items: center;
	justify-content: center;
	width: 54px; height: 54px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .45);
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.show-wa .wa-float { opacity: 1; transform: none; pointer-events: auto; }

/* =========================================================
   16. Generic pages (index.php)
   ========================================================= */
.page-content { padding-block: var(--section); max-width: 900px; }
.entry + .entry { margin-top: 64px; }
.entry-title { margin-bottom: 24px; }
.entry-thumb { margin-bottom: 28px; }
.entry-content { font-size: 17px; }
.entry-content a { color: var(--green); text-decoration: underline; }
.entry-content h2, .entry-content h3 { margin: 1.4em 0 .5em; }

/* =========================================================
   17. Reveal animation
   ========================================================= */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.works-grid [data-reveal]:nth-child(even),
.craft-steps [data-reveal]:nth-child(2),
.services-grid [data-reveal]:nth-child(2) { transition-delay: .08s; }
.craft-steps [data-reveal]:nth-child(3),
.services-grid [data-reveal]:nth-child(3) { transition-delay: .16s; }
.craft-steps [data-reveal]:nth-child(4) { transition-delay: .24s; }
.services-grid [data-reveal]:nth-child(4) { transition-delay: 0s; }
.services-grid [data-reveal]:nth-child(5) { transition-delay: .08s; }
.services-grid [data-reveal]:nth-child(6) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.marquee-track { animation: none; }
	.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   18. Responsive
   ========================================================= */

/* ---- Small laptops ---- */
@media (max-width: 1280px) {
	.main-nav .menu { gap: 28px; }
	.hero { gap: 48px; }
	.hero-media { margin-right: 0; gap: 18px; }
	.work-1, .work-2 { height: 420px; }
	.work-3, .work-4 { height: 460px; }
	.work-5, .work-6, .work-7 { height: 360px; }
	.craft-step { padding-inline: 28px; }
	.est-card { right: -20px; }
}

/* ---- Tablets ---- */
@media (max-width: 1024px) {
	:root { --header-h: 70px; }

	.brand-mark { width: 38px; height: 38px; }
	.brand-name { font-size: 24px; }

	.nav-toggle { display: block; order: 3; }
	.header-cta { margin-left: auto; }
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		padding: 12px var(--pad) 28px;
		background: var(--bg);
		border-bottom: 1px solid rgba(34, 29, 22, .1);
		box-shadow: 0 24px 30px -24px rgba(34, 29, 22, .35);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
	}
	.nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
	.main-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.main-nav .menu li { border-bottom: 1px solid rgba(34, 29, 22, .08); }
	.main-nav .menu a { display: block; padding: 18px 0; font-size: 14px; }
	.main-nav .menu a::after { display: none; }

	.hero {
		grid-template-columns: 1fr;
		gap: 64px;
		padding-block: 64px 80px;
	}
	.hero-copy { max-width: 620px; }
	.hero-lead { max-width: 520px; }
	.hero-media { max-width: 760px; }

	.section-head--split { flex-direction: column; align-items: flex-start; gap: 18px; }
	.section-note { margin: 0; }

	.works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
	.work,
	.work-1, .work-2, .work-3, .work-4, .work-5, .work-6, .work-7 {
		grid-column: span 1;
		height: auto;
		aspect-ratio: 4 / 3.4;
	}
	.work-1 { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

	.craft { padding-block: 88px; }
	.craft .section-head { margin-bottom: 44px; }
	.craft-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.craft-step { min-height: 0; padding: 36px 32px; }
	.craft-step + .craft-step { border-left: 0; }
	.craft-step:nth-child(even) { border-left: 1px solid var(--line); }
	.craft-step:nth-child(n+3) { border-top: 1px solid var(--line); }

	.story { grid-template-columns: 1fr; gap: 84px; }
	.story-media { max-width: 560px; }
	.est-card { right: -20px; }

	.services { padding-block: 88px; }
	.services-grid { grid-template-columns: 1fr; gap: 0; }
	.service { padding: 32px 0; }
	.service p { max-width: 560px; }
	.service-num { margin-bottom: 14px; }

	.contact { grid-template-columns: 1fr; gap: 56px; padding-top: 96px; }
	.contact-map { aspect-ratio: 16 / 9; }

	.local { grid-template-columns: 1fr; gap: 52px; }
	.faq-grid { grid-template-columns: 1fr; gap: 36px; }
	.faq-head { position: static; max-width: 560px; }
	.contact-info { max-width: 560px; }
}

/* ---- Large phones ---- */
@media (max-width: 767px) {
	.header-cta { display: none; }
	.nav-cta { display: inline-flex; margin-top: 22px; align-self: stretch; }

	.hero { padding-block: 44px 64px; gap: 48px; }
	.hero-title { margin-bottom: 28px; }
	.hero-lead { font-size: 16.5px; }
	.hero .btn-row .btn { flex: 1 1 auto; }
	.hero-stats { gap: 18px 28px; }
	.stat-num { font-size: 28px; }
	.hero-media { gap: 10px; }
	.hero-img::after { inset: 7px; }

	.marquee-list li { font-size: 22px; line-height: 58px; padding-left: 34px; }
	.marquee-list .marquee-star { padding-left: 34px; }
	.marquee-star svg { width: 15px; height: 15px; }

	.section-head { margin-bottom: 36px; }

	.works-grid { grid-template-columns: 1fr; gap: 14px; }
	.work,
	.work-1, .work-2, .work-3, .work-4, .work-5, .work-6, .work-7 { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
	.work--tall { aspect-ratio: 4 / 4.6; }
	.work figcaption { left: 18px; bottom: 16px; }
	.work-title { font-size: 25px; }

	.craft { padding-block: 72px; }
	.craft-steps { grid-template-columns: 1fr; }
	.craft-step,
	.craft-step:nth-child(even) { border-left: 0; padding: 30px 4px; }
	.craft-step + .craft-step { border-top: 1px solid var(--line); }
	.craft-step p { max-width: none; }
	.step-num { font-size: 40px; margin-bottom: 12px; }

	.story { gap: 76px; }
	.story-img::after { inset: 10px; }
	.est-card { right: 12px; bottom: -44px; width: 220px; padding: 22px 24px; }
	.est-year { font-size: 30px; }
	.story-copy p { font-size: 16px; }

	.services { padding-block: 72px; }
	.services-head { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
	.service-title { font-size: 30px; }

	.cta { min-height: 0; padding-block: 76px; }
	.cta-lead { font-size: 16px; margin-block: 24px 28px; }
	.cta .btn-row .btn { flex: 1 1 220px; }

	.contact { padding-top: 76px; }
	.contact-map { aspect-ratio: 4 / 3; }

	.hero-kicker { margin-bottom: 20px; letter-spacing: .22em; }
	.local { gap: 44px; }
	.local-copy p { font-size: 16px; }
	.area-title { font-size: 23px; }
	.chips { gap: 8px; }
	.chips li { font-size: 13px; padding: 7px 12px; }
	.faq-q { font-size: 21px; }
	.faq-item summary { padding: 20px 0; }
	.faq-a p { font-size: 15.5px; margin-bottom: 22px; }
	.contact-card { padding: 32px 22px 40px; }
	.card-title { font-size: 30px; }
	.contact-value { font-size: 24px; }

	.site-footer { padding-top: 60px; padding-bottom: 88px; }
	.footer-top { flex-direction: column; gap: 44px; }
	.footer-cols { gap: 56px; }
	.footer-bottom { flex-direction: column; }

	.wa-float { display: flex; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
	.brand { gap: 10px; }
	.brand-name { font-size: 22px; }
	.brand-tag { font-size: 8px; letter-spacing: .2em; }
	.hero-title { font-size: 48px; }
	.btn { padding: 0 20px; letter-spacing: .13em; }
	.field-row { grid-template-columns: 1fr; gap: 30px; }
	.wa-form .btn { align-self: stretch; }
}
