/*
Theme Name: ZHONG Photography
Theme URI: https://zhongphotography.com
Author: ZHONG Photography
Description: Lightweight bilingual (EN/中文) photography theme for ZHONG Photography — Hoi An, Viet Nam.
Version: 1.0.6
License: GNU General Public License v2 or later
Text Domain: zhongphoto
*/

/* ================================================================
   CSS VARIABLES — Ivory / Terracotta / Gold system
   ================================================================ */
:root {
	--bg:       #FCFAF7;
	--bg-soft:  #F8F4EE;
	--card:     #FFFDF9;
	--tx:       #3D3128;
	--tx2:      #6E5B4C;
	--tx3:      #9A8778;
	--gold:     #C7A56A;
	--gold-s:   #E7D7B8;
	--brown:    #5B4636;
	--terra:    #B86E45;
	--terra-h:  #9F5734;
	--bdr:      #E7DDD2;
	--bdr-g:    #D8BE8A;
	--serif:    "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
	--sans:     "Jost", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
	--radius:   14px;
	--shadow:   0 8px 32px rgba(61,49,40,.09);
	--w:        1200px;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--tx);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--terra); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terra-h); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.2; }
ul   { list-style: none; padding: 0; margin: 0; }
.wrap { max-width: var(--w); margin: 0 auto; padding: 0 32px; }

/* ================================================================
   TYPOGRAPHY HELPERS
   ================================================================ */
.eyebrow {
	font-family: var(--sans); font-size: 14.3px; font-weight: 600;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--tx3); margin-bottom: 12px;
}
.sec-title {
	font-family: var(--serif); font-size: 36px;
	font-weight: 600; color: var(--tx); line-height: 1.18;
	margin-bottom: 12px;
}
.sec-sub {
	font-size: 15px; color: var(--tx2); line-height: 1.75;
	max-width: 520px; margin: 0 auto;
}
.gold-rule { width: 44px; height: 1.5px; background: var(--gold); margin: 0 auto 18px; }
.section { padding: 48px 0; }
.section-alt { background: var(--bg-soft); }
.section-title { text-align: center; }
.section-sub  { text-align: center; color: var(--tx2); max-width: 600px; margin: 0 auto 44px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
	display: inline-block; font-family: var(--sans);
	font-size: 14.5px; font-weight: 500; letter-spacing: .05em;
	padding: 12px 28px; border-radius: 6px; border: none;
	cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s;
	line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary  { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-h); color: #fff; }
.btn-outline  { background: transparent; color: var(--tx); border: 1.5px solid var(--tx); }
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }
.btn-gold     { background: transparent; color: var(--tx2); border: 1.5px solid var(--bdr-g); }
.btn-gold:hover { border-color: var(--terra); color: var(--terra); }
.btn-sm { padding: 9px 20px; font-size: 12.5px; }

/* ================================================================
   LANGUAGE TOGGLE
   ================================================================ */
.t-zh { display: none; }
body.lang-zh .t-zh { display: inline; }
body.lang-zh .t-en { display: none; }
.mob-br { display: none; }
body.lang-zh { font-family: var(--sans); }
.lang-switch {
	display: inline-flex; gap: 2px;
	background: var(--bg-soft); border: 1px solid var(--bdr);
	border-radius: 99px; padding: 3px; font-size: 12.5px;
}
.lang-switch button {
	border: 0; background: transparent; padding: 5px 13px;
	cursor: pointer; font-family: var(--sans); font-size: 12.5px;
	color: var(--tx3); border-radius: 99px; transition: all .2s;
}
.lang-switch button.active { background: var(--tx); color: #fff; }

/* ================================================================
   S01 — NOTICE BAR
   ================================================================ */
.notice-bar {
	background: #8B6420; color: #FDF8EE;
	text-align: center; padding: 10px 52px;
	font-size: 13px; font-weight: 400; letter-spacing: .025em;
	position: relative; display: flex; align-items: center;
	justify-content: center; gap: 16px;
}
.notice-bar .dm { color: var(--gold-s); font-size: 9px; opacity: .8; }
.notice-x {
	position: absolute; right: 16px; top: 50%;
	transform: translateY(-50%);
	background: none; border: none; color: #FDF8EE;
	font-size: 17px; cursor: pointer; opacity: .6; line-height: 1;
	transition: opacity .2s;
}
.notice-x:hover { opacity: 1; }

/* ================================================================
   S02 — HEADER
   ================================================================ */
.site-header {
	background: var(--bg);
	border-bottom: 1px solid var(--bdr);
	position: sticky; top: 0; z-index: 900;
	transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(61,49,40,.09); }
.header-inner {
	display: flex; align-items: center;
	justify-content: space-between; height: 72px;
}
.brand, .logo-link {
	display: flex; align-items: center; gap: 12px;
	color: var(--tx); text-decoration: none;
}
.brand:hover, .logo-link:hover { color: var(--tx); }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-name {
	font-family: var(--serif); font-size: 1.55rem; font-weight: 700;
	letter-spacing: 0.18em; color: var(--tx); line-height: 1;
	text-transform: uppercase; display: flex; flex-direction: column; gap: 3px;
}
.brand-name small {
	font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.44em;
	color: var(--gold); font-weight: 500; text-transform: uppercase;
}
.main-nav ul { display: flex; gap: 34px; }
.main-nav a { font-size: 14px; color: var(--tx2); letter-spacing: .02em; transition: color .2s; }
.main-nav a:hover { color: var(--tx); }
.hdr-right { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; border: 0; background: none; font-size: 1.5rem; cursor: pointer; color: var(--tx); padding: 4px; }

/* ================================================================
   S03 — HERO (split layout)
   ================================================================ */
.hero {
	overflow: hidden; background: var(--bg);
}
.hero-inner {
	display: flex; min-height: 640px; align-items: stretch;
}
.hero-text {
	flex: 0 0 40%;
	padding: 88px 48px 88px 0;
	display: flex; flex-direction: column; justify-content: center;
	background: var(--bg); position: relative; z-index: 2;
}
.hero-eyebrow {
	font-size: 11px; font-weight: 600; letter-spacing: .2em;
	text-transform: uppercase; color: var(--tx3); margin-bottom: 20px;
}
.hero h1, .hero-title {
	font-family: var(--serif); font-size: 54px; font-weight: 600;
	line-height: 1.1; color: var(--tx); margin-bottom: 18px;
	letter-spacing: -.01em;
}
.hero-desc, .hero p.desc {
	font-size: 15px; color: var(--tx2); line-height: 1.75;
	margin-bottom: 34px; max-width: 360px;
}
.hero-cta, .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* Overwrite old hero dark styles */
.hero::after { display: none; }
.hero-content { position: relative; z-index: 2; }

/* Right image column */
.hero-img {
	flex: 0 0 60%; position: relative; overflow: hidden;
	border-radius: 8px;
}
.hero-img img {
	width: 100%; height: 100%;
	object-fit: cover; object-position: center top;
}
.hero-img::before {
	content: ''; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(
		to right,
		var(--bg) 0%,
		rgba(252,250,247,.55) 28%,
		transparent 56%
	);
}
/* Slideshow compat (kept for other pages using it) */
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
	position: absolute; inset: 0;
	background-size: cover; background-position: center top;
	opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }

/* ================================================================
   S04 — TRUST STRIP
   ================================================================ */
.trust-strip {
	background: var(--bg-soft);
	border-top: 1px solid var(--bdr);
	border-bottom: 1px solid var(--bdr);
	padding: 28px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item {
	display: flex; align-items: center; gap: 14px;
	padding: 0 28px; border-right: 1px solid var(--bdr);
}
.trust-item:last-child { border-right: none; }
.t-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--gold); }
.t-icon svg { width: 28px; height: 28px; }
.t-label { font-size: 13px; font-weight: 600; color: var(--tx); line-height: 1.3; }
.t-sub   { font-size: 12px; color: var(--tx3); margin-top: 2px; }

/* ================================================================
   S05 — PACKAGES
   ================================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

/* Homepage simple cards */
.pkg-card {
	position: relative; background: var(--card);
	border: 1.5px solid var(--bdr-g); border-radius: var(--radius);
	border-top: 10px solid var(--gold);
	box-shadow: 0 12px 40px rgba(199,165,106,.22);
	padding: 32px 26px 28px;
	display: flex; flex-direction: column;
	transition: transform .2s, box-shadow .2s;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg-card.pkg-featured, .pkg-card.featured {
	background: rgba(199,165,106,.06);
	border-top: 10px solid var(--gold);
}
.pkg-badge {
	position: absolute; top: -10px; right: 20px;
	background: var(--terra); color: #fff;
	font-size: 10.5px; font-weight: 600;
	letter-spacing: .08em; text-transform: uppercase;
	padding: 5px 13px; border-radius: 0 0 9px 9px;
}
.pkg-icon { font-size: 1.5rem; margin-bottom: 4px; text-align: center; }
.pkg-name {
	font-family: var(--serif); font-size: 25px; font-weight: 600;
	color: var(--tx); margin-bottom: 0; line-height: 1.2; text-align: center;
}
.pkg-name::after {
	content: ''; display: block;
	width: 32px; height: 1.5px;
	background: var(--gold);
	margin: 8px auto 12px;
}
.pkg-divider { width: 30px; height: 1.5px; background: var(--gold); margin-bottom: 12px; }
.pkg-tagline {
	font-family: var(--serif); font-size: 17px; font-style: italic;
	color: var(--tx2); margin-bottom: 10px; line-height: 1.5;
}
.pkg-desc { font-size: 13.5px; color: var(--tx2); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.pkg-price {
	font-family: var(--serif); font-size: 27px; font-weight: 600;
	color: var(--tx); margin-bottom: 8px; line-height: 1;
}
.pkg-price small, .pkg-price sub {
	font-family: var(--sans); font-size: 13px; font-weight: 400;
	color: var(--tx3); vertical-align: baseline; margin-left: 3px;
}
.pkg-extra { font-size: 13px; color: var(--tx3); margin-bottom: 16px; }
/* Detailed cards (packages page) */
.pkg-specs, .pkg-inc { list-style: none; padding: 0; margin: 14px 0 0; font-size: 14.5px; }
.pkg-specs li, .pkg-inc li { padding: 7px 0 7px 22px; position: relative; border-bottom: 1px dashed var(--bdr); color: var(--tx2); }
.pkg-specs li::before { content: "◆"; color: var(--gold); position: absolute; left: 2px; font-size: 8px; top: 11px; }
.pkg-inc li::before { content: "✓"; color: var(--terra); position: absolute; left: 2px; font-weight: 600; }
.pkg-inc-title { margin-top: 16px; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--tx3); font-weight: 600; }
.pkg-cta { margin-top: auto; }
.pkg-card .pkg-cta { margin-top: auto; padding-top: 20px; font-size: 14.5px; }
/* Featured card CTA */
.pkg-card.pkg-featured .pkg-cta.btn,
.pkg-card.featured .pkg-cta.btn { background: var(--terra); color: #fff; border: none; }
.pkg-card.pkg-featured .pkg-cta.btn:hover,
.pkg-card.featured .pkg-cta.btn:hover { background: var(--terra-h); }
/* Simple link CTA */
a.pkg-cta-link {
	font-size: 12.5px; font-weight: 500; letter-spacing: .06em;
	text-transform: uppercase; color: var(--tx2);
	display: inline-flex; align-items: center; gap: 5px;
	transition: color .2s;
}
a.pkg-cta-link:hover { color: var(--terra); }
.makeup-note {
	margin-top: 36px; text-align: center;
	background: var(--card); border: 1px dashed var(--bdr-g);
	border-radius: var(--radius); padding: 18px 24px; font-size: 16px; color: var(--tx2);
}

/* ================================================================
   S06 — PROCESS
   ================================================================ */
/* Homepage horizontal process */
.proc-steps {
	display: grid; grid-template-columns: repeat(6,1fr);
	position: relative;
}
.proc-steps::before {
	content: ''; position: absolute;
	top: 27px; left: calc(100%/12); right: calc(100%/12);
	height: 1px; background: var(--bdr-g); z-index: 0;
}
.proc-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.proc-num {
	width: 54px; height: 54px; border-radius: 50%;
	border: 1.5px solid var(--bdr-g); background: var(--card);
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 16px;
	font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--brown);
}
.proc-title  { font-size: 13.5px; font-weight: 600; color: var(--tx); margin-bottom: 5px; }
.proc-desc   { font-size: 13px; color: var(--tx3); line-height: 1.5; }
.proc-tag {
	display: inline-block; margin-top: 6px;
	background: var(--gold-s); color: var(--brown);
	font-size: 13px; font-weight: 600;
	padding: 2px 8px; border-radius: 20px; letter-spacing: .04em;
}
/* Process page vertical steps */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
	display: flex; gap: 28px; align-items: flex-start;
	padding: 32px 0; border-bottom: 1px solid var(--bdr);
}
.process-step:last-child { border-bottom: none; }
.step-num {
	flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
	background: var(--gold); color: #fff; font-family: var(--serif);
	font-size: 1.3rem; font-weight: 700;
	display: flex; align-items: center; justify-content: center; margin-top: 4px;
}
.step-body { flex: 1; }
.step-body h3 { margin: 0 0 8px; font-size: 1.1rem; color: var(--tx); }
.step-body p  { margin: 0 0 10px; color: var(--tx2); }
.step-note {
	background: var(--bg-soft); border-left: 3px solid var(--gold);
	padding: 10px 14px; border-radius: 0 6px 6px 0;
	font-size: 13.5px; color: var(--tx2);
}

/* ================================================================
   S07 — GALLERY (homepage preview + archive)
   ================================================================ */
.gal-grid {
	display: grid; grid-template-columns: repeat(3,1fr);
	gap: 16px; margin-bottom: 40px;
}
.gal-item { aspect-ratio: 4/5; overflow: hidden; border-radius: 10px; background: var(--bg-soft); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gal-item:hover img { transform: scale(1.05); }
/* Gallery archive */
.album-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.album-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--tx); box-shadow: 0 4px 16px rgba(61,49,40,.1); }
.album-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .35s, opacity .3s; }
.album-card:hover img { transform: scale(1.04); opacity: .85; }
.album-card .album-title {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 14px;
	background: linear-gradient(transparent, rgba(20,16,10,.82));
	color: #fff; font-family: var(--serif); font-size: 1.2rem;
}
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 14px; }
.photo-grid a { border-radius: 10px; overflow: hidden; display: block; }
.photo-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .3s; }
.photo-grid a:hover img { transform: scale(1.03); }
/* Masonry */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; align-items: center; margin-bottom: 36px; }
/* Sticky filter bar (desktop: below header) */
.gallery-filter-bar {
	position: sticky; top: 72px; z-index: 850;
	background: var(--bg); border-bottom: 1px solid var(--bdr);
	padding: 16px 0 14px; margin-bottom: 28px;
}
.gallery-filter-bar .gallery-filters { margin-bottom: 0; }
.gallery-filter-bar .gallery-filters + .gallery-filters { margin-top: 10px; }
.gf-btn {
	padding: 8px 20px; border: 1.5px solid var(--bdr); border-radius: 99px;
	background: none; font-family: var(--sans); font-size: 13px; color: var(--tx2);
	cursor: pointer; transition: all .2s;
}
.gf-btn:hover, .gf-btn.active { background: var(--terra); border-color: var(--terra); color: #fff; }
.masonry-grid { columns: 3; column-gap: 14px; }
.masonry-item { break-inside: avoid; margin-bottom: 14px; border-radius: 10px; overflow: hidden; cursor: pointer; display: block; }
.masonry-item img { width: 100%; display: block; transition: transform .32s, opacity .22s; }
.masonry-item:hover img { transform: scale(1.03); opacity: .9; }
.masonry-item[hidden] { display: none; }

/* ================================================================
   S08 — REVIEWS
   ================================================================ */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
	background: var(--card);
	border-radius: var(--radius); padding: 28px 24px;
	display: flex; flex-direction: column;
	transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; margin-bottom: 14px; text-align: center; }
.review-text {
	font-family: var(--serif); font-size: 18.5px; font-style: italic;
	color: var(--tx2); line-height: 1.72; flex: 1; margin-bottom: 18px; text-align: center;
}
.review-author {
	display: flex; align-items: center; justify-content: center; gap: 10px;
	margin-top: auto; border-top: 1px solid var(--bdr); padding-top: 14px;
}
.rv-name { font-size: 14px; font-weight: 700; color: var(--tx); }
.rv-from { font-size: 14px; color: var(--tx2); font-weight: 500; }
.review-date  { font-size: 11.5px; color: var(--tx3); margin-top: 3px; }
.star-input { display: flex; gap: 6px; font-size: 1.7rem; cursor: pointer; }
.star-input span { color: var(--bdr); transition: color .15s; }
.star-input span.on { color: var(--gold); }

/* ================================================================
   S09 — BOOKING CTA (contact cards)
   ================================================================ */
.contact-row {
	display: grid; grid-template-columns: repeat(3,1fr);
	gap: 24px; max-width: 860px; margin: 0 auto;
}
.c-card {
	background: var(--card); border: 1px solid var(--bdr);
	border-radius: var(--radius); padding: 36px 22px 26px;
	display: flex; flex-direction: column; align-items: center; gap: 13px;
	transition: transform .2s, box-shadow .2s;
}
.c-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.c-icon {
	width: 54px; height: 54px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.c-icon svg { width: 28px; height: 28px; }
.c-icon.wa { background: #E9F7EE; color: #25D366; }
.c-icon.wc { background: #E9F7EE; color: #07C160; }
.c-icon.ln { background: #E9F5F7; color: #00B900; }
.c-title { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--tx); }
.c-qr {
	width: 130px; height: 130px; object-fit: contain;
	border-radius: 8px; border: 1px solid var(--bdr);
	padding: 4px; background: #fff;
}
.c-sub { font-size: 14px; color: var(--tx3); text-align: center; line-height: 1.5; }

/* Contact section header */
.contact-eyebrow {
	font-size: 17px;
	letter-spacing: .22em;
	margin-bottom: 14px;
}
.contact-sub {
	margin-bottom: 48px;
}

/* c-info: title + sub wrapper (mobile: centered column) */
.c-info { display: flex; flex-direction: column; gap: 3px; }

/* Desktop: 2-column card layout — icon left, info right */
@media (min-width: 881px) {
	.c-card {
		flex-direction: row;
		align-items: center;
		text-align: left;
		padding: 20px 24px;
		gap: 16px;
	}
	.c-info { gap: 4px; }
	.c-title { font-size: 16px; }

	/* WA + LN: hide QR image, hide button; resize icon */
	.c-card-wa .c-qr,
	.c-card-ln .c-qr,
	.c-card-wa .btn,
	.c-card-ln .btn { display: none; }
	.c-card-wa .c-icon,
	.c-card-ln .c-icon { width: 52px; height: 52px; flex-shrink: 0; }
	.c-card-wa .c-icon svg,
	.c-card-ln .c-icon svg { width: 30px; height: 30px; }

	/* WeChat: hide colored icon, show QR on left, hide button */
	.c-card-wc .c-icon { display: none; }
	.c-card-wc .btn { display: none; }
	.c-card-wc .c-qr {
		width: 64px; height: 64px;
		order: -1;
		flex-shrink: 0;
		padding: 3px;
	}
}


/* ================================================================
   S10 — FOOTER
   ================================================================ */
.site-footer {
	background: var(--bg-soft);
	border-top: 1px solid var(--bdr);
	padding: 60px 0 0;
}
.footer-grid {
	display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px; padding-bottom: 52px;
}
.f-logo {
	margin-bottom: 10px; line-height: 0;
}
.f-logo img { height: 100px; width: auto; display: block; }
.f-tagline { font-size: 13px; color: var(--tx3); line-height: 1.7; margin-bottom: 20px; max-width: 270px; }
.f-socials { display: flex; gap: 10px; }
.f-soc {
	width: 34px; height: 34px; border-radius: 50%;
	border: 1px solid var(--bdr); background: var(--card);
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; color: var(--tx2);
	transition: border-color .2s, transform .2s;
}
.f-soc:hover { border-color: var(--gold); color: var(--tx); transform: translateY(-2px); }
.site-footer h4, .f-col h5 {
	font-family: var(--sans); font-size: 10.5px; font-weight: 600;
	letter-spacing: .15em; text-transform: uppercase;
	color: var(--tx3); margin-bottom: 18px;
}
.site-footer ul li, .f-col ul li { margin-bottom: 10px; }
.site-footer a, .f-col a { font-size: 13.5px; color: var(--tx2); transition: color .2s; }
.site-footer a:hover, .f-col a:hover { color: var(--tx); }
.footer-bottom {
	border-top: 1px solid var(--bdr); padding: 20px 0;
	display: flex; justify-content: space-between; align-items: center;
}
.f-copy { font-size: 12px; color: var(--tx3); }
.f-copy a { color: var(--tx3); }
.f-copy a:hover { color: var(--tx); }

/* ================================================================
   FLOATING CONTACT BUTTONS
   ================================================================ */
.float-contact { position: fixed; right: 18px; bottom: 22px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; }
.fc-btn {
	width: 54px; height: 54px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.22);
	transition: transform .15s; border: 0; cursor: pointer;
}
.fc-btn:hover { transform: scale(1.1); color: #fff; }
.fc-btn svg { width: 28px; height: 28px; fill: #fff; }
.fc-whatsapp { background: #25d366; }
.fc-wechat   { background: #07c160; }
.fc-line     { background: #06c755; }

/* ================================================================
   QR MODAL
   ================================================================ */
.qr-modal {
	position: fixed; inset: 0; z-index: 1300;
	background: rgba(15,12,8,.75); display: none;
	align-items: center; justify-content: center; padding: 24px;
}
.qr-modal.open { display: flex; }
.qr-box {
	background: #fff; border-radius: 16px;
	padding: 30px 34px; text-align: center;
	max-width: 340px; width: 100%; position: relative;
}
.qr-box h3 { margin-bottom: 4px; color: var(--tx); }
.qr-box .qr-id { color: var(--tx3); font-size: 13.5px; margin-bottom: 14px; }
.qr-box img { margin: 0 auto; border-radius: 8px; max-height: 280px; width: auto; }
.qr-close { position: absolute; top: 10px; right: 14px; border: 0; background: none; font-size: 1.4rem; cursor: pointer; color: var(--tx3); }
.qr-actions { margin-top: 16px; }

/* ================================================================
   LIGHTBOX
   ================================================================ */
.zlb {
	position: fixed; inset: 0; z-index: 1200;
	background: rgba(15,12,8,.93);
	display: none; align-items: center; justify-content: center;
}
.zlb.open { display: flex; }
.zlb img { max-width: 92vw; max-height: 88vh; width: auto; height: auto; border-radius: 6px; box-shadow: 0 12px 60px rgba(0,0,0,.6); }
.zlb button { position: absolute; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 1.5rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
.zlb button:hover { background: rgba(255,255,255,.3); }
.zlb-close { top: 20px; right: 20px; }
.zlb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.zlb-next  { right: 16px; top: 50%; transform: translateY(-50%); }

/* ================================================================
   FORMS (booking page)
   ================================================================ */
.zform { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--radius); padding: 36px; }
.zform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.zform label { display: block; font-size: 12px; letter-spacing: .06em; font-weight: 500; margin: 16px 0 6px; color: var(--tx3); text-transform: uppercase; }
.zform input, .zform select, .zform textarea {
	width: 100%; padding: 12px 14px; border: 1px solid var(--bdr); border-radius: 8px;
	font-family: var(--sans); font-size: 14.5px; background: var(--bg); color: var(--tx);
}
.zform input:focus, .zform select:focus, .zform textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.zform .btn { margin-top: 22px; width: 100%; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-msg { padding: 14px 18px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.form-msg.ok  { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-msg.err { background: #fdecea; color: #b71c1c; border: 1px solid #f5c6cb; }

/* ================================================================
   MISC — Page hero, policies, entry content
   ================================================================ */
.page-hero { text-align: center; padding: 64px 24px 28px; }
.page-hero h1 { font-size: 2.5rem; color: var(--tx); margin-bottom: 8px; }
.page-hero p  { color: var(--tx2); max-width: 600px; margin: 0 auto; font-size: 15px; }
.policy-list  { background: var(--card); border: 1px solid var(--bdr); border-radius: var(--radius); padding: 28px 34px; }
.policy-list li { margin: 10px 0; color: var(--tx2); }
.entry-content { max-width: 820px; margin: 0 auto; }
.entry-content img { border-radius: 10px; }
/* Experience 3-point */
.exp-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.exp-point  { text-align: center; padding: 32px 22px; background: var(--card); border-radius: 10px; border: 1px solid var(--bdr); }
.exp-icon   { font-size: 2.2rem; margin-bottom: 12px; }
.exp-point h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--tx); }
.exp-point p  { font-size: 13.5px; color: var(--tx2); line-height: 1.7; }

/* ================================================================
   DESTINATION PAGES
   ================================================================ */
.city-selector {
	position: sticky; top: 0; z-index: 800;
	background: rgba(34,29,22,.96); backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.cs-inner { display: flex; align-items: center; gap: 18px; padding-top: 10px; padding-bottom: 10px; }
.cs-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); white-space: nowrap; }
.cs-nav   { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-btn {
	padding: 7px 18px; border-radius: 99px; font-size: 13px;
	color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.15); transition: all .2s;
}
.cs-btn:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.cs-btn.active { background: var(--cs-accent, var(--gold)); border-color: transparent; color: #111; font-weight: 600; }
.dest-hero { padding: 96px 24px 106px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.dest-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.45)); pointer-events: none; }
.dest-hero-content { position: relative; z-index: 1; }
.dest-city-label { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; display: block; }
.dest-hero h1 { font-size: 2.8rem; color: #fff; max-width: 760px; margin: 0 auto 18px; }
.dest-desc { font-size: 1.05rem; max-width: 660px; margin: 0 auto 34px; color: rgba(255,255,255,.85); line-height: 1.7; }
.dest-highlights { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dest-hl {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: 26px 18px; background: var(--card); border-radius: 10px;
	border: 1px solid var(--bdr); font-size: 13.5px; color: var(--tx2); line-height: 1.5;
}
.dest-hl-icon { font-size: 1.8rem; margin-bottom: 10px; }
.dest-photo-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 10px; }
.dest-photo { background-size: cover; background-position: center; border-radius: 8px; }
.dest-photo:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.dest-photo:nth-child(5) { grid-column: span 2; }
.dest-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dest-card {
	position: relative; border-radius: var(--radius);
	padding: 40px 28px 34px; display: flex; flex-direction: column; gap: 8px;
	min-height: 180px; color: #fff; overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.dest-card::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.22); transition: background .2s; }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.18); color: #fff; }
.dest-card:hover::after { background: rgba(0,0,0,.10); }
.dest-card-name { position: relative; z-index: 1; font-family: var(--serif); font-size: 1.5rem; font-weight: 700; }
.dest-card-tag  { position: relative; z-index: 1; font-size: 13px; color: rgba(255,255,255,.78); }
.dest-card-soon { position: relative; z-index: 1; margin-top: 8px; display: inline-block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; background: rgba(255,255,255,.2); padding: 4px 12px; border-radius: 99px; width: fit-content; }
.coming-soon-badge { max-width: 600px; margin: 0 auto; padding: 48px 0; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
	.pkg-grid { grid-template-columns: repeat(2,1fr); }
	.proc-steps { grid-template-columns: repeat(3,1fr); row-gap: 36px; }
	.proc-steps::before { display: none; }
}
@media (max-width: 880px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.65rem; }
	/* Hero */
	/* Hero mobile: text overlay on image */
	.hero-inner { position: relative; min-height: 420px; }
	.hero-img   { flex: 1; border-radius: 0; }
	.hero-text  {
		position: absolute; inset: 0; flex: none; width: 100%;
		padding: 36px 24px;
		background: none;
		justify-content: center;
	}
	.hero h1, .hero-title { font-size: 28px; }
	.hero-desc { font-size: 13px; margin-bottom: 20px; }
	.hero-cta { flex-direction: row; gap: 10px; align-items: center; }
	.hero-btn-book { display: none; }
	.hero-btn-explore { width: auto; }
	.mob-br { display: block; }
	/* Trust */
	.trust-grid { grid-template-columns: repeat(2,1fr); }
	.trust-item:nth-child(2) { border-right: none; }
	.trust-item { border-bottom: 1px solid var(--bdr); padding: 14px 20px; }
	.trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
	/* Packages */
	.pkg-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
	/* Gallery */
	.gal-grid { grid-template-columns: repeat(2,1fr); }
	/* hide header Book Now button on mobile */
	.hdr-book { display: none; }
	.masonry-grid { columns: 2; }
	/* Sticky filter bar -> top of screen, below header on mobile */
	.gallery-filter-bar {
		position: sticky; top: 72px; bottom: auto; left: auto; right: auto;
		z-index: 850; margin-bottom: 20px;
		background: var(--bg); border-top: 0; border-bottom: 1px solid var(--bdr);
		box-shadow: 0 4px 14px rgba(61,49,40,.08);
		padding: 10px 12px;
	}
	.gallery-filter-bar .gallery-filters {
		flex-wrap: wrap; justify-content: center; gap: 7px;
	}
	.gallery-filter-bar .gf-btn { padding: 5px 13px; font-size: 11px; border-width: 1px; }
	/* hide "Place" / "Style" labels on mobile */
	.gallery-filter-bar .gf-label { display: none; }
	.album-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
	/* Reviews */
	.review-grid { grid-template-columns: 1fr; }
	/* Contact */
	.contact-row { grid-template-columns: 1fr; max-width: 360px; }
	/* Nav */
	.nav-toggle { display: block; }
	.main-nav {
		display: none; position: absolute; top: 100%; left: 0; right: 0;
		background: var(--card); border-bottom: 1px solid var(--bdr);
		padding: 12px 20px 20px; box-shadow: 0 8px 24px rgba(61,49,40,.1);
	}
	.main-nav.open { display: block; }
	.main-nav ul { flex-direction: column; gap: 0; }
	.main-nav a { display: block; padding: 12px 4px; font-size: 1rem; }
	/* Footer */
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
	/* Forms */
	.zform-row { grid-template-columns: 1fr; }
	.zform { padding: 22px 18px; }
	/* Section */
	.section { padding: 28px 0; }
	/* Process */
	.proc-steps { grid-template-columns: repeat(2,1fr); }
	.process-step { gap: 18px; padding: 24px 0; }
	/* Dest */
	.dest-highlights { grid-template-columns: repeat(2,1fr); }
	.dest-photo-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
	.dest-photo:nth-child(1) { grid-column: span 2; grid-row: span 1; }
	.dest-cards { grid-template-columns: 1fr 1fr; }
	/* Exp */
	.exp-points { grid-template-columns: 1fr; }
	/* Float */
	.float-contact { right: 14px; bottom: 18px; }
	.fc-btn { width: 50px; height: 50px; }
	.fc-btn svg { width: 24px; height: 24px; }
	.wrap { padding: 0 20px; }
}
@media (max-width: 480px) {
	body { font-size: 15px; }
	.hero h1, .hero-title { font-size: 30px; }
	.sec-title { font-size: 28px; }
	.gal-grid { grid-template-columns: 1fr; }
	.masonry-grid { columns: 1; }
	.album-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.zform input, .zform select, .zform textarea { font-size: 16px; }
	.dest-cards { grid-template-columns: 1fr; }
	.wrap { padding: 0 16px; }
	.float-contact { flex-dir
/* Gallery archive: giam padding-top dau trang (khong anh huong trang khac) */
.post-type-archive-zhong_album .section { padding-top: 8px; }
ur(6px); padding: 10px 18px; border-radius: 99px; }
	.fc-btn { width: 44px; height: 44px; box-shadow: none; }
}
@media (hover: none) {
	.pkg-card:hover { transform: none; }
	.album-card:hover img { transform: none; opacity: 1; }
	.fc-btn:hover { transform: none; }
}

/* Destination pages: canh giua 2 nut CTA trong hero */
.dest-hero .hero-cta { justify-content: center; }
