/*
Theme Name: Good Health Club
Theme URI: https://goodhealthclub.com.my
Description: A marketing showcase site for Good Health Club — a Malaysian house of health-led brands. Products link out to Shopee. Built as a WordPress block theme.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
Author: Good Health Club
Author URI: https://goodhealthclub.com.my
Text Domain: good-health-club
License: All Rights Reserved
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
	--ghc-green:        #1e3d2d;
	--ghc-green-dark:   #182e22;
	--ghc-cream:        #f4efe3;
	--ghc-coral:        #e8795a;
	--ghc-magenta:      #e84b8a;
	--ghc-red:          #e54b35;
	--ghc-white:        #ffffff;
	--ghc-dark:         #1a2c20;
	--ghc-muted:        #4a5c50;

	--ghc-font-display: 'Cabin', sans-serif;
	--ghc-font-anton:   'Anton', sans-serif;
	--ghc-font-serif:   'Playfair Display', serif;
	--ghc-font-body:    'Inter', sans-serif;

	--ghc-radius-card:  16px;
	--ghc-radius-btn:   100px;
	--ghc-max-width:    1200px;
	--ghc-gutter:       64px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
	font-family: var(--ghc-font-body);
	font-size: 15px;
	line-height: 1.65;
	color: var(--ghc-dark);
	background-color: var(--ghc-cream);
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.1; }

/* Remove default WP block gaps where not wanted */
.wp-site-blocks > * + * { margin-block-start: 0; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.ghc-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--ghc-green);
	height: 64px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 0 var(--ghc-gutter);
	gap: 24px;
}

/* Logo */
.ghc-logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

/*
 * The logo PNG is dark-green-on-white. CSS filter chain converts it to
 * white-on-transparent for the dark header:
 *   invert(1)     → white bg becomes black, dark text becomes light
 *   saturate(0)   → strip any colour cast from the inverted text
 *   brightness(2) → push the light-grey text to pure white (black bg stays 0)
 * mix-blend-mode: screen  → black pixels vanish into the dark-green header,
 *                           white pixels show as white.
 * Replace with a transparent/cream PNG when available to remove this filter.
 */
.ghc-logo {
	height: 38px;
	width: auto;
	display: block;
	filter: invert(1) saturate(0) brightness(2);
	mix-blend-mode: screen;
}

/* ── Desktop nav (centered column) ── */
.ghc-nav {
	display: flex;
	justify-content: center;
	position: static; /* dropdown positions relative to .ghc-header */
}

.ghc-nav__list {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ghc-nav__item {
	position: static;
}

.ghc-nav__link {
	font-family: var(--ghc-font-body);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ghc-cream);
	text-decoration: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	line-height: 64px; /* full header height — makes hit target tall */
	white-space: nowrap;
	transition: opacity 0.15s;
}

.ghc-nav__link:hover { opacity: 0.7; }

/* Caret SVG rotates when dropdown is open */
.ghc-nav__caret {
	width: 10px;
	height: 10px;
	transition: transform 0.2s;
	flex-shrink: 0;
}

.ghc-nav__item--has-dropdown:hover .ghc-nav__caret,
.ghc-nav__item--has-dropdown.is-open .ghc-nav__caret {
	transform: rotate(180deg);
}

/* ── Mega dropdown ── */
.ghc-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 8px;
	right: 8px;
	background: var(--ghc-green);
	border-radius: 16px;
	padding: 28px 32px 36px;
	box-shadow: 0 16px 48px rgba(0,0,0,0.28);
	z-index: 300;
}

.ghc-nav__item--has-dropdown:hover .ghc-dropdown,
.ghc-nav__item--has-dropdown.is-open .ghc-dropdown {
	display: block;
}

.ghc-dropdown__brands {
	display: flex;
	flex-direction: column;
	padding-right: 36px;
	min-width: 200px;
}

.ghc-dropdown__divider {
	width: 1px;
	background: rgba(244,239,227,0.15);
	margin: 4px 36px 4px 0;
	align-self: stretch;
	flex-shrink: 0;
}

.ghc-dropdown__featured {
	flex: 1;
	min-width: 0;
}

.ghc-dropdown__label {
	display: block;
	font-family: var(--ghc-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(244,239,227,0.4);
	margin-bottom: 20px;
}

.ghc-dropdown__brand-link {
	display: block;
	font-family: var(--ghc-font-body);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ghc-cream);
	text-decoration: none;
	margin-bottom: 14px;
	transition: opacity 0.15s;
}
.ghc-dropdown__brand-link:hover { opacity: 0.65; }

.ghc-dropdown__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ghc-dropdown__card {
	display: block;
	text-decoration: none;
	color: var(--ghc-cream);
	transition: opacity 0.15s;
}
.ghc-dropdown__card:hover { opacity: 0.85; }

.ghc-dropdown__card-img {
	width: 100%;
	aspect-ratio: 16/10;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 12px;
	background: rgba(255,255,255,0.06); /* placeholder tint until images are added */
}

.ghc-dropdown__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ghc-dropdown__card-name {
	font-family: var(--ghc-font-body);
	font-size: 16px;
	font-weight: 700;
	color: var(--ghc-cream);
	margin-bottom: 4px;
}

.ghc-dropdown__card-sub {
	font-family: var(--ghc-font-body);
	font-size: 13px;
	color: rgba(244,239,227,0.55);
}

/* ── Right side (Shopee CTA + hamburger) ── */
.ghc-header__right {
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: flex-end;
	flex-shrink: 0;
}

.ghc-nav-shopee-btn {
	background: var(--ghc-red);
	color: var(--ghc-white);
	border-radius: var(--ghc-radius-btn);
	font-family: var(--ghc-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding: 10px 20px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s;
}
.ghc-nav-shopee-btn:hover { opacity: 0.88; }

.ghc-shopee-text { /* hidden on mobile via media query below */ }

/* ── Hamburger button ── */
.ghc-hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 22px;
	height: 16px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
}

.ghc-hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ghc-cream);
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
	transform-origin: center;
}

.ghc-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ghc-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ghc-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay ── */
.ghc-mobile-nav {
	display: none;
	position: fixed;
	inset: 64px 0 0 0;
	background: var(--ghc-green);
	z-index: 190;
	padding: 24px var(--ghc-gutter) 48px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.ghc-mobile-nav.is-open { display: block; }

body.ghc-nav-open { overflow: hidden; }

.ghc-mobile-nav__link {
	display: block;
	font-family: var(--ghc-font-body);
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--ghc-cream);
	text-decoration: none;
	padding: 18px 0;
	border-bottom: 1px solid rgba(244,239,227,0.1);
	transition: opacity 0.15s;
}
.ghc-mobile-nav__link:hover { opacity: 0.7; }

.ghc-mobile-nav__sub {
	display: block;
	font-family: var(--ghc-font-body);
	font-size: 17px;
	font-weight: 500;
	color: rgba(244,239,227,0.6);
	text-decoration: none;
	padding: 12px 0 12px 16px;
	border-bottom: 1px solid rgba(244,239,227,0.06);
	transition: opacity 0.15s;
}
.ghc-mobile-nav__sub:hover { opacity: 0.8; }

.ghc-mobile-nav__cta {
	margin-top: 32px;
}

/* ============================================================
   MARQUEE / TICKER STRIP
   ============================================================ */
.ghc-marquee {
	background: var(--ghc-green-dark);
	overflow: hidden;
	padding: 20px 0;
}

.ghc-marquee__inner {
	display: flex;
	white-space: nowrap;
	will-change: transform;
	animation: ghc-scroll 32s linear infinite;
}

.ghc-marquee__inner span {
	font-family: var(--ghc-font-display);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ghc-cream);
	padding: 0 28px;
}

.ghc-marquee__dot {
	color: var(--ghc-coral) !important;
	padding: 0 8px !important;
}

@keyframes ghc-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTION SHELL
   ============================================================ */
.ghc-section {
	padding: 88px var(--ghc-gutter);
}

.ghc-inner {
	max-width: var(--ghc-max-width);
	margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
.ghc-hero {
	background: var(--ghc-green);
	padding: 80px var(--ghc-gutter) 64px;
}

.ghc-hero__inner {
	max-width: var(--ghc-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 64px;
	align-items: center;
}

.ghc-hero__text {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ghc-hero__headline {
	font-family: var(--ghc-font-display);
	font-weight: 700;
	font-size: clamp(52px, 6.5vw, 92px);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	color: var(--ghc-cream);
	margin: 0 0 24px;
}

.ghc-hero__headline .w-coral   { color: var(--ghc-coral); }
.ghc-hero__headline .w-magenta { color: var(--ghc-magenta); }

.ghc-hero__sub {
	font-family: var(--ghc-font-body);
	font-size: 16px;
	color: rgba(244,239,227,0.8);
	margin: 0 0 32px;
}

.ghc-hero__ctas {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.ghc-hero__photo {
	position: relative;
}

.ghc-hero__photo img {
	width: 100%;
	border-radius: 6px;
	object-fit: cover;
	aspect-ratio: 3/4;
}

.ghc-hero__caption {
	position: absolute;
	bottom: 12px;
	right: 14px;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(244,239,227,0.65);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ghc-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: var(--ghc-radius-btn);
	font-family: var(--ghc-font-body);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: opacity 0.2s;
}
.ghc-btn:hover { opacity: 0.85; }

.ghc-btn--red {
	background: var(--ghc-red);
	color: var(--ghc-white);
	padding: 13px 26px;
}

.ghc-btn--ghost-light {
	background: transparent;
	color: var(--ghc-cream);
	border: 1.5px solid rgba(244,239,227,0.6);
	padding: 11px 20px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghc-btn--ghost-dark {
	background: transparent;
	color: var(--ghc-dark);
	border: 1.5px solid rgba(26,44,32,0.5);
	padding: 11px 20px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghc-btn--outline-light {
	background: transparent;
	color: var(--ghc-cream);
	border: 1.5px solid rgba(244,239,227,0.45);
	padding: 8px 20px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghc-link {
	font-family: var(--ghc-font-body);
	font-size: 14px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 4px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ghc-cream);
}

.ghc-link--dark {
	color: var(--ghc-dark);
	text-decoration-color: var(--ghc-dark);
}

/* ============================================================
   HAPPY FOX — BRAND SECTION
   ============================================================ */
.ghc-hf {
	background: var(--ghc-cream);
}

.ghc-hf__intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	margin-bottom: 64px;
}

.ghc-hf__logo-card {
	background: #e4e0d5;
	background-image: repeating-linear-gradient(
		135deg,
		transparent,
		transparent 22px,
		rgba(0,0,0,0.04) 22px,
		rgba(0,0,0,0.04) 24px
	);
	border-radius: 8px;
	aspect-ratio: 16/10;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ghc-hf__logo-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.ghc-hf__text h3 {
	font-family: var(--ghc-font-body);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: var(--ghc-dark);
	margin-bottom: 16px;
}

/* Product grid */
.ghc-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 20px;
}

.ghc-product-card {
	border-radius: var(--ghc-radius-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ghc-product-card__img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
}

.ghc-product-card__img-placeholder {
	width: 100%;
	overflow: hidden;
}

.ghc-product-card__img-placeholder span {
	font-family: var(--ghc-font-display);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	text-align: center;
}

.ghc-product-card--sour-cream .ghc-product-card__img-placeholder { background: #A1C77C; }
.ghc-product-card--himalayan  .ghc-product-card__img-placeholder { background: #FFCECE; }
.ghc-product-card--chilli     .ghc-product-card__img-placeholder { background: #F19376; }
.ghc-product-card--smoky      .ghc-product-card__img-placeholder { background: #EAC28E; }

.ghc-product-card__body {
	padding: 16px 18px 20px;
	background: var(--ghc-cream);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ghc-product-card__name {
	font-family: var(--ghc-font-body);
	font-size: 17px;
	font-weight: 700;
	color: var(--ghc-dark);
	margin: 0 0 6px;
	line-height: 1.25;
}

.ghc-product-card__desc {
	font-size: 13px;
	color: var(--ghc-muted);
	line-height: 1.5;
	margin-bottom: 16px;
	flex: 1;
}

.ghc-product-card--sour-cream { background: #A1C77C; }
.ghc-product-card--himalayan  { background: #FFCECE; }
.ghc-product-card--chilli     { background: #F19376; }
.ghc-product-card--smoky      { background: #EAC28E; }

/* Raw water lily CTA banner */
.ghc-raw-banner {
	background: var(--ghc-white);
	border-radius: var(--ghc-radius-btn);
	padding: 22px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ghc-raw-banner__text h4 {
	font-family: var(--ghc-font-body);
	font-size: 15px;
	font-weight: 700;
	color: var(--ghc-dark);
	margin: 0 0 4px;
}

.ghc-raw-banner__text p {
	font-size: 13px;
	color: var(--ghc-muted);
	margin: 0;
}

/* ============================================================
   WATER LILY SPLIT
   ============================================================ */
.ghc-waterlily {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
}

.ghc-waterlily__text {
	background: var(--ghc-cream);
	padding: 88px var(--ghc-gutter);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ghc-waterlily__headline {
	font-family: var(--ghc-font-display);
	font-weight: 700;
	font-size: clamp(22px, 2.2vw, 32px);
	line-height: 1.25;
	color: var(--ghc-green);
	letter-spacing: 0.02em;
	margin-bottom: 32px;
}

.ghc-waterlily__headline em {
	font-style: italic;
	color: var(--ghc-coral);
	font-family: var(--ghc-font-serif);
	font-size: inherit;
	text-transform: none;
}

.ghc-waterlily__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============================================================
   ALLWAYS SECTION
   ============================================================ */
.ghc-allways {
	background: var(--ghc-green);
	padding: 88px var(--ghc-gutter);
}

.ghc-allways__inner {
	max-width: var(--ghc-max-width);
	margin: 0 auto;
}

.ghc-allways__wordmark {
	font-family: var(--ghc-font-serif);
	font-size: clamp(52px, 6.5vw, 96px);
	font-weight: 700;
	color: var(--wp--preset--color--soft-pink);
	line-height: 1;
	margin-bottom: 8px;
}

.ghc-allways__tagline {
	font-size: 18px;
	color: var(--ghc-coral);
	font-weight: 500;
	margin-bottom: 20px;
}

.ghc-allways__desc {
	font-size: 15px;
	color: rgba(244,239,227,0.8);
	max-width: 520px;
	line-height: 1.7;
	margin-bottom: 40px;
}

.ghc-drinks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.ghc-drink-card {
	border-radius: var(--ghc-radius-card);
	overflow: hidden;
}

.ghc-drink-card__img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
	display: block;
}

.ghc-drink-card__img-placeholder {
	width: 100%;
	aspect-ratio: 16/9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ghc-drink-card--kombucha  { background: var(--wp--preset--color--drink-kombucha); }
.ghc-drink-card--lemonade  { background: var(--wp--preset--color--drink-lemonade); }
.ghc-drink-card--kombucha .ghc-drink-card__img-placeholder { background: #3a3494; }
.ghc-drink-card--lemonade  .ghc-drink-card__img-placeholder { background: #285a46; }

.ghc-drink-card__body {
	padding: 24px 28px 28px;
}

.ghc-drink-card__label {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ghc-coral);
	font-weight: 600;
	margin-bottom: 8px;
}

.ghc-drink-card__title {
	font-family: var(--ghc-font-display);
	font-weight: 700;
	font-size: 34px;
	color: var(--ghc-white);
	text-transform: uppercase;
	margin-bottom: 12px;
	line-height: 1.05;
}

.ghc-drink-card__desc {
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	line-height: 1.6;
	margin-bottom: 16px;
}

.ghc-flavours {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.ghc-flavour {
	display: inline-block;
	padding: 5px 14px;
	border: 1.5px solid rgba(247,157,217,0.5);
	border-radius: 100px;
	font-size: 12px;
	color: var(--wp--preset--color--soft-pink);
	font-family: var(--ghc-font-body);
	background: rgba(247,157,217,0.08);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.ghc-testimonials {
	background: var(--ghc-green);
	padding: 88px var(--ghc-gutter);
}

.ghc-testimonials__heading {
	font-family: var(--ghc-font-serif);
	font-style: italic;
	font-size: clamp(26px, 2.8vw, 40px);
	font-weight: 700;
	color: var(--ghc-cream);
	text-align: center;
	margin: 0 0 52px;
	line-height: 1.2;
}

.ghc-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ghc-testimonial-card {
	background: rgba(244,239,227,0.05);
	border: 1px solid rgba(244,239,227,0.14);
	border-radius: 16px;
	padding: 32px 28px 28px;
	display: flex;
	flex-direction: column;
	transition: background 0.2s, transform 0.18s ease;
}

.ghc-testimonial-card:hover {
	background: rgba(244,239,227,0.09);
	transform: translateY(-4px);
}

.ghc-testimonial-card__mark {
	font-family: var(--ghc-font-serif);
	font-size: 64px;
	line-height: 0.8;
	color: var(--ghc-coral);
	margin-bottom: 12px;
	display: block;
}

.ghc-testimonial-card__quote {
	font-family: var(--ghc-font-serif);
	font-style: italic;
	font-size: 16px;
	line-height: 1.7;
	color: var(--ghc-cream);
	flex: 1;
	margin: 0 0 28px;
}

.ghc-testimonial-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(244,239,227,0.12);
	padding-top: 16px;
	gap: 12px;
}

.ghc-testimonial-card__author {
	font-family: var(--ghc-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--ghc-coral);
}

.ghc-testimonial-card__product {
	font-family: var(--ghc-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(244,239,227,0.35);
}

/* ============================================================
   ABOUT / WHO WE ARE
   ============================================================ */
.ghc-about {
	background: var(--ghc-cream);
	padding: 88px var(--ghc-gutter);
	position: relative;
}

.ghc-about__inner {
	max-width: var(--ghc-max-width);
	margin: 0 auto;
}

/* Label sits at the top-left, aligned with the start of the quote */
.ghc-about__label-wrap {
	position: absolute;
	left: 28px;
	top: 88px; /* matches section padding-top */
	border-left: 1.5px solid rgba(26,44,32,0.2);
	padding-left: 8px;
}

.ghc-about__label {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--ghc-font-body);
	font-size: 10px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ghc-green);
	opacity: 0.5;
	white-space: nowrap;
}

/* Quote constrained to the left ~65% — right side stays open */
.ghc-about__quote {
	font-family: var(--ghc-font-serif);
	font-style: italic;
	font-size: clamp(22px, 2.6vw, 38px);
	line-height: 1.3;
	color: var(--ghc-green);
	margin-bottom: 52px;
	max-width: 65%;
}

/* "GOOD" — Anton for the condensed logo-matching weight */
.ghc-about__quote strong {
	font-style: normal;
	font-family: var(--ghc-font-anton);
	font-weight: 400; /* Anton is inherently heavy at 400 */
	font-size: 1em;
	letter-spacing: 0.03em;
	color: var(--ghc-green);
}

.ghc-about__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.ghc-about__text p {
	font-size: 15px;
	color: var(--ghc-dark);
	line-height: 1.7;
	margin-bottom: 18px;
}

.ghc-about__text p:last-child { margin-bottom: 0; }

.ghc-about__img {
	width: 100%;
	border-radius: 4px;
	object-fit: cover;
	aspect-ratio: 4/3;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ghc-footer {
	background: var(--ghc-green);
	color: var(--ghc-cream);
}

.ghc-footer__main {
	padding: 64px var(--ghc-gutter) 48px;
	max-width: calc(var(--ghc-max-width) + var(--ghc-gutter) * 2);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 48px;
}

.ghc-footer__logo-img {
	display: block;
	width: 140px;
	height: 140px;
	object-fit: contain;
	margin-bottom: 16px;
	filter: invert(1) saturate(0) brightness(2);
	mix-blend-mode: screen;
}

.ghc-footer__tagline {
	font-size: 13px;
	color: rgba(244,239,227,0.65);
	line-height: 1.65;
	max-width: 280px;
	margin-bottom: 24px;
}

.ghc-footer__brand-pills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.ghc-footer__col-heading {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(244,239,227,0.45);
	font-weight: 500;
	margin-bottom: 20px;
	font-family: var(--ghc-font-body);
}

.ghc-footer__col a {
	display: block;
	font-size: 14px;
	color: var(--ghc-cream);
	text-decoration: none;
	margin-bottom: 12px;
	font-family: var(--ghc-font-body);
	transition: opacity 0.2s;
}
.ghc-footer__col a:hover { opacity: 0.65; }

.ghc-footer__email {
	font-size: 13px;
	color: rgba(244,239,227,0.7);
	word-break: break-all;
	margin-top: 4px;
}

.ghc-footer__bottom {
	border-top: 1px solid rgba(244,239,227,0.12);
	padding: 20px var(--ghc-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: calc(var(--ghc-max-width) + var(--ghc-gutter) * 2);
	margin: 0 auto;
}

.ghc-footer__copy {
	font-size: 13px;
	color: rgba(244,239,227,0.4);
	font-family: var(--ghc-font-body);
}

.ghc-footer__social {
	display: flex;
	gap: 16px;
	align-items: center;
}

.ghc-footer__social a {
	color: var(--ghc-cream);
	opacity: 0.5;
	transition: opacity 0.2s;
	text-decoration: none;
}
.ghc-footer__social a:hover { opacity: 1; }

.ghc-footer__social svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
	:root { --ghc-gutter: 40px; }
	.ghc-products { grid-template-columns: repeat(2, 1fr); }
	.ghc-footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 860px) {
	.ghc-hero__inner { grid-template-columns: 1fr; }
	.ghc-hero__photo { display: none; }
	.ghc-hf__intro { grid-template-columns: 1fr; }
	.ghc-waterlily { grid-template-columns: 1fr; }
	.ghc-waterlily__img { max-height: 360px; }
	.ghc-drinks { grid-template-columns: 1fr; }
	.ghc-testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
	.ghc-about__body { grid-template-columns: 1fr; }
	.ghc-about__label-wrap { display: none; }
	/* Nav → hamburger */
	.ghc-nav { display: none; }
	.ghc-hamburger { display: flex; }
	.ghc-shopee-text { display: none; }
	.ghc-nav-shopee-btn { padding: 10px 14px; }
	/* Dropdown cannot show on touch — handled by mobile nav overlay */
	.ghc-dropdown { display: none !important; }
}

@media (max-width: 680px) {
	:root { --ghc-gutter: 24px; }
	.ghc-header { padding: 0 20px; }
	.ghc-products { grid-template-columns: 1fr; }
	.ghc-footer__main { grid-template-columns: 1fr; gap: 32px; }
	.ghc-footer__bottom { flex-direction: column; gap: 12px; }
	.ghc-raw-banner { flex-direction: column; text-align: center; }
}

/* ============================================================
   HOVER EFFECTS — scale / lift on all interactive elements
   ============================================================ */

/* Extend every existing transition to also animate transform */
.ghc-btn,
.ghc-nav-shopee-btn,
.ghc-nav__link,
.ghc-dropdown__brand-link,
.ghc-dropdown__card,
.ghc-link,
.ghc-link--dark,
.ghc-footer__col a,
.ghc-footer__brand-pill,
.ghc-footer__social a,
.ghc-mobile-nav__link,
.ghc-mobile-nav__sub {
	transition: opacity 0.18s ease, transform 0.18s ease;
}

/* Buttons — scale up clearly */
.ghc-btn:hover,
.ghc-nav-shopee-btn:hover {
	transform: scale(1.06);
}

/* Desktop nav text links — subtle scale */
.ghc-nav__link:hover {
	transform: scale(1.08);
}

/* Dropdown brand links — nudge right */
.ghc-dropdown__brand-link:hover {
	transform: translateX(4px);
}

/* Dropdown featured cards — scale + lift */
.ghc-dropdown__card:hover {
	transform: scale(1.02) translateY(-3px);
}

/* Inline text links */
.ghc-link:hover,
.ghc-link--dark:hover {
	transform: scale(1.04);
}

/* Footer nav links — nudge right */
.ghc-footer__col a:hover {
	transform: translateX(3px);
}

/* Footer brand pills */
.ghc-footer__brand-pill:hover {
	transform: scale(1.05);
}

/* Footer social icons — scale up noticeably (they're small) */
.ghc-footer__social a:hover {
	transform: scale(1.25);
}

/* Mobile nav — slide right on hover/focus */
.ghc-mobile-nav__link:hover {
	transform: translateX(6px);
}

.ghc-mobile-nav__sub:hover {
	transform: translateX(8px);
}

/* Suppress transform on mobile to avoid jank on touch */
@media (hover: none) {
	.ghc-btn:hover,
	.ghc-nav-shopee-btn:hover,
	.ghc-nav__link:hover,
	.ghc-dropdown__brand-link:hover,
	.ghc-dropdown__card:hover,
	.ghc-link:hover,
	.ghc-link--dark:hover,
	.ghc-footer__col a:hover,
	.ghc-footer__brand-pill:hover,
	.ghc-footer__social a:hover,
	.ghc-mobile-nav__link:hover,
	.ghc-mobile-nav__sub:hover {
		transform: none;
	}
}
