/* ==========================================================================
   The Lounging Dutchman — modern tropical/sunset redesign
   ========================================================================== */

:root {
	--sand:        #fff8ef;
	--sand-2:      #fdeedd;
	--ink:         #2a2118;
	--ink-soft:    #5a4d3f;
	--sunset:      #f16529;
	--sunset-deep: #e0451c;
	--amber:       #f78e21;
	--sun:         #ffd23f;
	--sea:         #149ba3;
	--sea-deep:    #0d767c;
	--palm:        #3aa655;
	--night:       #221b29;
	--night-2:     #2e2536;
	--white:       #ffffff;

	--maxw: 1120px;
	--radius: 18px;
	--shadow: 0 14px 40px rgba(42, 33, 24, 0.14);
	--shadow-sm: 0 6px 18px rgba(42, 33, 24, 0.10);

	--font-body: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-script: "Pacifico", cursive;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
	line-height: 1.65;
	color: var(--ink);
	background: var(--sand);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--sunset-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 0.4em;
}

.container {
	width: min(100% - 2.5rem, var(--maxw));
	margin-inline: auto;
}

.script {
	font-family: var(--font-script);
	font-weight: 400;
	letter-spacing: 0;
}

/* ===== Buttons ========================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.85em 1.6em;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
	background: var(--sunset);
	color: #fff;
	box-shadow: 0 8px 20px rgba(241, 101, 41, 0.4);
}
.btn-primary:hover { background: var(--sunset-deep); }

.btn-light {
	background: #fff;
	color: var(--sea-deep);
	box-shadow: var(--shadow-sm);
}
.btn-light:hover { background: var(--sun); color: var(--ink); }

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(34, 27, 41, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 0.7rem;
}
.brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: #fff;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { font-size: 1.05rem; }

.main-nav ul {
	display: flex;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.main-nav a {
	display: block;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 600;
	font-size: 0.95rem;
}
.main-nav a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	text-decoration: none;
}

/* ===== Hero ============================================================= */

.hero {
	position: relative;
	text-align: center;
	color: #fff;
	padding: clamp(3rem, 6vw, 5.5rem) 0 0;
	background:
		radial-gradient(120% 90% at 80% 0%, rgba(255, 210, 63, 0.85), transparent 55%),
		linear-gradient(165deg, #ffcf3d 0%, #f78e21 30%, #f16529 55%, #c2406b 80%, #7a3b8f 100%);
	overflow: hidden;
}
.hero::before {
	/* sun glow */
	content: "";
	position: absolute;
	top: -120px;
	right: -60px;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(255, 244, 200, 0.9), rgba(255, 210, 63, 0) 65%);
	pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }

.hero-logo-card {
	display: inline-block;
	background: #fff;
	padding: clamp(1rem, 2.5vw, 1.6rem);
	border-radius: 24px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
	margin-bottom: 1.6rem;
}
.hero-logo-card img { width: min(420px, 80vw); }

.hero h1 {
	font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
	margin-bottom: 0.2em;
}
.hero .tagline {
	font-family: var(--font-script);
	font-size: clamp(1.3rem, 1rem + 1.6vw, 2.1rem);
	color: #fff;
	margin: 0 0 1.4rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero .hero-cta { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.hero .wave {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

/* ===== Sections ========================================================= */

section { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.section-head .eyebrow {
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.78rem;
	color: var(--sunset-deep);
	margin-bottom: 0.6rem;
}
.section-head h2 {
	font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem);
}
.section-head p { color: var(--ink-soft); margin: 0; }

/* ===== On Tap cards ===================================================== */

.tap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}
.beer-card {
	position: relative;
	background: #fff;
	border-radius: var(--radius);
	padding: 1.6rem 1.5rem 1.5rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--sand-2);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
	display: flex;
	flex-direction: column;
}
.beer-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}
.beer-card .beer-icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: linear-gradient(150deg, var(--sun), var(--amber));
	color: #fff;
	margin-bottom: 1rem;
}
.beer-card .beer-icon svg { width: 30px; height: 30px; }
.beer-card h3 {
	font-size: 1.18rem;
	margin-bottom: 0.5rem;
}
.beer-card .beer-num {
	color: var(--sea-deep);
	font-weight: 700;
}
.beer-card p { margin: 0 0 1rem; color: var(--ink-soft); font-size: 0.98rem; }
.beer-card .stats {
	margin-top: auto;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.beer-card .stat {
	font-weight: 700;
	font-size: 0.82rem;
	padding: 0.3em 0.8em;
	border-radius: 999px;
	background: var(--sand-2);
	color: var(--sunset-deep);
}

/* ===== Alexa band ======================================================= */

.band-alexa {
	background:
		radial-gradient(100% 120% at 0% 0%, rgba(255, 255, 255, 0.12), transparent 50%),
		linear-gradient(135deg, var(--sea), var(--sea-deep));
	color: #fff;
	text-align: center;
}
.band-alexa .eyebrow { color: var(--sun); }
.band-alexa h2 { color: #fff; }
.band-alexa .ask {
	font-family: var(--font-script);
	font-size: clamp(1.4rem, 1rem + 2vw, 2.2rem);
	margin: 1rem auto 1.6rem;
	max-width: 720px;
	line-height: 1.4;
}
.band-alexa p { color: rgba(255, 255, 255, 0.9); max-width: 620px; margin: 0 auto 0.5rem; }

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

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}
.about-text h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem); }
.about-text p { color: var(--ink-soft); }
.about-photo img {
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	width: 100%;
	object-fit: cover;
}
.about-photo figcaption {
	margin-top: 0.6rem;
	font-size: 0.85rem;
	color: var(--ink-soft);
	text-align: center;
}

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

.site-footer {
	background: var(--night);
	color: rgba(255, 255, 255, 0.82);
	padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}
.site-footer h4 {
	color: var(--sun);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.9rem;
	margin-bottom: 0.9rem;
}
.site-footer p { margin: 0 0 0.6rem; color: rgba(255, 255, 255, 0.78); }
.site-footer a { color: #fff; }

.footer-contact ul { list-style: none; margin: 0; padding: 0; }
.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.7rem;
}
.footer-contact svg { width: 18px; height: 18px; flex: none; color: var(--amber); }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}
.footer-bottom a { color: var(--amber); }

/* ===== Responsive ======================================================= */

@media (max-width: 760px) {
	.about-grid { grid-template-columns: 1fr; }
	.about-photo { order: -1; }
	.brand span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.beer-card, .btn { transition: none; }
}
