/* BIZ Salon — public marketing site.
   "Warm editorial salon" profile (set via /frontend-design). Intentionally NOT the
   Bizaxl navy/mint portal tokens — the marketing site follows the salon market:
   warm ivory, espresso ink, clay/terracotta accent, Fraunces + Hanken Grotesk. */

:root {
	--bg: #f7f1e8;
	--bg-2: #f1e7d8;
	--surface: #fffdf9;
	--ink: #2a2420;
	--ink-soft: #6b5e52;
	--clay: #b65d3c;
	--clay-deep: #9a4a2e;
	--rose: #c98a7d;
	--gold: #c9a24b;
	--line: #e7dccb;
	--radius: 20px;
	--shadow: 0 18px 40px -24px rgba(42, 36, 32, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: 'Hanken Grotesk', ui-sans-serif, system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0;
}

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
	font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--clay); font-weight: 600;
}

/* Grain + warm wash backdrop */
.grain::before {
	content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.4;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
	mix-blend-mode: multiply;
}

/* Nav */
.nav {
	position: sticky; top: 0; z-index: 30;
	backdrop-filter: blur(10px);
	background: rgba(247, 241, 232, 0.82);
	border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brandmark { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; }
.brandmark .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--clay); display: inline-flex; align-items: center; justify-content: center; color: var(--bg); font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-soft); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--clay); }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-weight: 600; font-size: 15px; cursor: pointer; border: none;
	padding: 0 26px; height: 52px; border-radius: 999px; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary { background: var(--clay); color: var(--bg); box-shadow: 0 12px 28px -12px rgba(182, 93, 60, 0.7); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 84px 0 96px; }
.hero::before {
	content: ''; position: absolute; inset: -20% -10% auto -10%; height: 80%;
	background: radial-gradient(60% 70% at 30% 20%, rgba(201, 138, 125, 0.4), transparent 60%),
		radial-gradient(50% 60% at 85% 30%, rgba(201, 162, 75, 0.32), transparent 60%);
	filter: blur(20px); z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(46px, 7vw, 86px); }
.hero h1 em { font-style: italic; color: var(--clay); }
.hero p.lede { font-size: 19px; color: var(--ink-soft); max-width: 30ch; margin: 22px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-aside { position: relative; }
.arch {
	aspect-ratio: 3/4; border-radius: 220px 220px 28px 28px;
	background: linear-gradient(160deg, var(--rose), var(--clay) 70%, var(--clay-deep));
	box-shadow: var(--shadow); position: relative; overflow: hidden;
	display: flex; align-items: flex-end; padding: 28px;
}
.arch::after { content: ''; position: absolute; inset: 16px; border: 1.5px solid rgba(255,253,249,0.45); border-radius: 200px 200px 18px 18px; }
.arch .chip { position: relative; background: rgba(255,253,249,0.92); border-radius: 14px; padding: 12px 16px; font-size: 14px; color: var(--ink); box-shadow: var(--shadow); }
.arch .chip strong { display: block; font-family: 'Fraunces', serif; font-size: 17px; }

/* Sections */
section.block { position: relative; z-index: 1; padding: 80px 0; }
.section-head { max-width: 620px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 52px); margin-top: 10px; }
.section-head p { color: var(--ink-soft); margin-top: 14px; }

/* Service menu — editorial price list */
.menu { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 56px; }
.menu-row { display: flex; align-items: baseline; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.menu-row .name { font-family: 'Fraunces', serif; font-size: 20px; }
.menu-row .lead { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-row .price { font-weight: 600; color: var(--clay); }
.menu-row .meta { display: block; font-size: 13px; color: var(--ink-soft); }
.cat-tag { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* Team */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stylist {
	background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 26px; box-shadow: var(--shadow); transition: transform 0.2s ease;
}
.stylist:hover { transform: translateY(-4px); }
.stylist .ava {
	width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(150deg, var(--rose), var(--clay));
	color: var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 24px; margin-bottom: 16px;
}
.stylist h3 { font-size: 22px; }
.stylist .role { color: var(--clay); font-size: 14px; font-weight: 600; margin: 2px 0 10px; }
.stylist p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* About + contact */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.contact-list strong { color: var(--ink); font-family: 'Fraunces', serif; }

/* Footer */
footer { position: relative; z-index: 1; background: var(--ink); color: var(--bg); padding: 56px 0; margin-top: 40px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
footer .brandmark { color: var(--bg); }
footer a { color: rgba(255,253,249,0.7); }
footer a:hover { color: var(--bg); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Booking flow */
.booking { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: 56px 24px 100px; }
.steps { display: flex; gap: 10px; margin-bottom: 36px; }
.step-pill { flex: 1; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); font-size: 14px; }
.step-pill .num { width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 14px; }
.step-pill.active { border-color: var(--clay); color: var(--ink); }
.step-pill.active .num { background: var(--clay); color: var(--bg); }
.step-pill.done .num { background: var(--gold); color: var(--bg); }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.choice {
	text-align: left; background: var(--surface); border: 1.5px solid var(--line); border-radius: 16px;
	padding: 18px; cursor: pointer; transition: border-color 0.18s, transform 0.18s; font: inherit; color: inherit;
}
.choice:hover { transform: translateY(-2px); border-color: var(--rose); }
.choice.sel { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(182,93,60,0.14); }
.choice .t { font-family: 'Fraunces', serif; font-size: 19px; }
.choice .s { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.choice .p { color: var(--clay); font-weight: 700; margin-top: 8px; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.slot { padding: 14px 0; text-align: center; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface); cursor: pointer; font: inherit; font-weight: 600; transition: all 0.16s; }
.slot:hover { border-color: var(--rose); }
.slot.sel { background: var(--clay); color: var(--bg); border-color: var(--clay); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
	width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line);
	background: var(--surface); font: inherit; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(182,93,60,0.12); }
.booking-nav { display: flex; justify-content: space-between; margin-top: 28px; }
.summary { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px; margin-bottom: 24px; }
.summary div { display: flex; justify-content: space-between; padding: 6px 0; }
.summary .k { color: var(--ink-soft); }
.note { color: var(--ink-soft); font-size: 14px; }
.success { text-align: center; padding: 40px 0; }
.success .check { width: 76px; height: 76px; border-radius: 50%; background: var(--clay); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 38px; margin: 0 auto 18px; font-family: 'Fraunces', serif; }
.muted { color: var(--ink-soft); }
.hide { display: none !important; }

@media (max-width: 820px) {
	.hero .wrap { grid-template-columns: 1fr; }
	.hero-aside { display: none; }
	.menu, .team, .split { grid-template-columns: 1fr; }
	.nav-links { display: none; }
	.steps { flex-wrap: wrap; }
}
