/* =========================================================
   City Nails & Spa — styles
   Clean, minimal. Edit the color values below to re-theme.
   ========================================================= */
:root {
	--base: #FBF9F7;      /* page background */
	--surface: #FFFFFF;   /* cards */
	--soft: #F4F0EC;      /* tinted bands */
	--ink: #1C1B1A;       /* main text */
	--muted: #6E6A66;     /* secondary text */
	--accent: #B85C79;    /* blush accent */
	--accent-strong: #93425F;
	--border: #E7E1DB;
	--content: 820px;     /* text column width */
	--wide: 1180px;       /* full layout width */
	--radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--base);
	color: var(--ink);
	font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-weight: 400;
	line-height: 1.15;
	margin: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
h3 { font-size: 1.4rem; font-weight: 500; }

p { margin: 0.75rem 0 0; }

a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent); text-underline-offset: 3px; }

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

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--wide); margin: 0 auto; padding-inline: 1.5rem; }
.narrow { max-width: var(--content); }
.center { text-align: center; }
.muted { color: var(--muted); }
.section { padding-block: 4rem; }
.band { background: var(--soft); border-block: 1px solid var(--border); }

/* ---- Signature eyebrow ---- */
.kicker {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: lowercase;
	color: var(--accent);
	margin: 0 0 0.35rem;
}

/* ---- Buttons ---- */
.btn, .btn-outline {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-decoration: none;
	padding: 0.85rem 1.7rem;
	border-radius: 6px;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.btn { background: var(--ink); color: var(--base); border: 1px solid var(--ink); }
.btn:hover { background: var(--accent-strong); border-color: var(--accent-strong); color: var(--base); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--base); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.btn-row.center { justify-content: center; }

/* ---- Header ---- */
.site-header { background: var(--base); border-top: 3px solid var(--accent); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1.1rem; }
.wordmark {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	text-decoration: none;
	color: var(--ink);
}
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { font-size: 0.95rem; text-decoration: none; }
.site-nav a:not(.btn) { color: var(--muted); }
.site-nav a:not(.btn):hover { color: var(--accent); }
.nav-toggle {
	display: none;
	background: none; border: 0; cursor: pointer; padding: 0.4rem;
	color: var(--ink);
}
.nav-toggle svg { display: block; }

/* ---- Hero ---- */
.hero { padding-top: 5rem; padding-bottom: 2.5rem; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 440px; margin: 1rem auto 1.9rem; }
.rounded { border-radius: var(--radius); overflow: hidden; }
.hero-media { margin-top: 2.2rem; }
.hero-media img { width: 100%; border-radius: var(--radius); object-fit: cover; }

/* ---- Feature row ---- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.feature h3 { margin-bottom: 0.4rem; }
.feature p { font-size: 0.9rem; }

/* ---- Cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card .card-body { padding: 1.25rem 1.5rem 1.5rem; }
.card h3 { margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; color: var(--muted); }

/* ---- Story split ---- */
.split { display: grid; grid-template-columns: 42% 1fr; gap: 3rem; align-items: center; }
.split img { width: 100%; border-radius: var(--radius); object-fit: cover; }

/* ---- Locations ---- */
.locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.loc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.loc-card p { font-size: 0.9rem; }
.loc-card .addr { color: var(--muted); }

/* ---- Menu list ---- */
.menu-group { margin-top: 3rem; }
.menu-group:first-of-type { margin-top: 0; }
.menu-group h2 { font-size: 1.9rem; margin-bottom: 0.5rem; }
.row {
	display: flex; justify-content: space-between; gap: 1.5rem;
	align-items: baseline;
	border-bottom: 1px solid var(--border);
	padding: 0.9rem 0 0.75rem;
}
.row .name { font-weight: 500; }
.row .desc { color: var(--muted); font-size: 0.9rem; margin: 0.15rem 0 0; }
.row .price { font-weight: 500; white-space: nowrap; }

/* ---- Maps ---- */
.maps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.map iframe { width: 100%; height: 240px; border: 0; border-radius: var(--radius); }
.map h3 { margin-top: 1.25rem; }
.map .addr { color: var(--muted); font-size: 0.9rem; }
.map .tel { font-size: 0.9rem; }

/* ---- Info band (hours / email) ---- */
.info { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
.info .kicker { text-align: center; }

/* ---- Footer ---- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding-block: 3rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; }
.footer-inner .wordmark { font-size: 1.15rem; }
.socials { display: flex; gap: 1rem; }
.socials a { color: var(--accent); line-height: 0; }
.socials svg { width: 20px; height: 20px; }
.copyright { text-align: center; margin-top: 1.75rem; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--muted); }

/* ---- Focus states (accessibility) ---- */
a:focus-visible, button:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
	.features { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
	.cards { grid-template-columns: 1fr; }
	.split { grid-template-columns: 1fr; gap: 1.75rem; }
	.locations, .maps, .info { grid-template-columns: 1fr; }

	.nav-toggle { display: inline-flex; }
	.site-nav {
		display: none;
		position: absolute; left: 0; right: 0; top: 100%;
		flex-direction: column; align-items: flex-start; gap: 1rem;
		background: var(--base);
		border-bottom: 1px solid var(--border);
		padding: 1.25rem 1.5rem 1.75rem;
	}
	.site-header { position: relative; }
	.site-nav.open { display: flex; }
	.site-nav .btn { align-self: stretch; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { transition: none !important; }
}
