/* ============================================================
   THE ZERO PHUKET — CORPORATE HOMEPAGE
   All selectors scoped under .tzph to avoid WP theme conflicts
   ============================================================ */

/* ──────────────── SCOPED RESET & VARIABLES ──────────────── */
.tzph {
  --tzph-accent: #856C4E;
  --tzph-accent-light: #D9C291;
  --tzph-accent-bg: rgba(133, 108, 78, 0.06);
  --tzph-bg-primary: #FDFBF7;
  --tzph-bg-secondary: #F5F0E8;
  --tzph-text-primary: #1C1C1C;
  --tzph-text-body: #4A4A4A;
  --tzph-text-muted: #8A8A7A;
  --tzph-white: #fff;
  --tzph-font-heading: 'Josefin Sans', sans-serif;
  --tzph-font-body: 'Montserrat', sans-serif;
  --tzph-font-mono: 'JetBrains Mono', monospace;
  --tzph-border-subtle: rgba(133, 108, 78, 0.05);
  --tzph-border-light: rgba(133, 108, 78, 0.06);
  --tzph-border-medium: rgba(133, 108, 78, 0.12);
  --tzph-radius-sm: 8px;
  --tzph-radius-md: 12px;
  --tzph-radius-lg: 16px;
  --tzph-radius-xl: 20px;
  --tzph-container-max: 1200px;
  --tzph-section-padding-x: 24px;
  --tzph-section-padding: 100px 24px;

  background: var(--tzph-bg-primary);
  color: var(--tzph-text-primary);
  font-family: var(--tzph-font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

.tzph *,
.tzph *::before,
.tzph *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tzph ::selection {
  background: var(--tzph-accent-light);
  color: var(--tzph-accent);
}

.tzph img {
  max-width: 100%;
  display: block;
  border: none;
  height: auto;
}

.tzph a {
  text-decoration: none;
  color: inherit;
  background: none;
  box-shadow: none;
}

.tzph button {
  font-family: var(--tzph-font-body);
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  line-height: inherit;
}

.tzph h1, .tzph h2, .tzph h3, .tzph h4, .tzph h5, .tzph h6 {
  font-family: var(--tzph-font-heading);
  margin: 0;
  padding: 0;
  line-height: 1.15;
  letter-spacing: normal;
  color: inherit;
}

.tzph p { margin: 0; padding: 0; }

.tzph select,
.tzph input,
.tzph textarea {
  font-family: var(--tzph-font-body);
  border-radius: 0;
  -webkit-appearance: none;
}

.tzph ul, .tzph ol { list-style: none; margin: 0; padding: 0; }

/* ──────────────── LAYOUT ──────────────── */
.tzph .container {
  max-width: var(--tzph-container-max);
  margin: 0 auto;
  padding-left: var(--tzph-section-padding-x);
  padding-right: var(--tzph-section-padding-x);
}

.tzph .text-center { text-align: center; }

/* ──────────────── LAZY IMAGE ──────────────── */
.tzph .lazy-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E8E0D4, #D8D0C4);
}

.tzph .lazy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s;
}

.tzph .lazy-img img.loaded { opacity: 1; }

/* ──────────────── SECTION TYPOGRAPHY ──────────────── */
.tzph .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--tzph-accent-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tzph .section-title {
  font-family: var(--tzph-font-heading);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 600;
  color: var(--tzph-accent);
  margin: 0 0 10px;
  line-height: 1.15;
}

.tzph .section-subtitle {
  color: var(--tzph-text-muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ──────────────── BUTTONS & LINKS ──────────────── */
.tzph .btn-primary {
  padding: 16px 34px;
  border: none;
  border-radius: 10px;
  background: var(--tzph-accent);
  color: #F5F0E8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--tzph-font-body);
  box-shadow: 0 4px 20px rgba(133, 108, 78, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.tzph .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(133, 108, 78, 0.28);
}

.tzph .btn-outline {
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--tzph-accent);
  background: transparent;
  color: var(--tzph-accent);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--tzph-font-body);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.tzph .btn-outline:hover {
  background: var(--tzph-accent);
  color: #F5F0E8;
}

.tzph .btn-ghost {
  padding: 16px 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--tzph-font-body);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.tzph .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
}

.tzph .link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--tzph-accent);
  transition: opacity 0.2s;
  display: inline-block;
  margin-top: 8px;
}

.tzph .link-arrow:hover { opacity: 0.7; }

.tzph .link-arrow-light {
  font-size: 14px;
  font-weight: 600;
  color: var(--tzph-accent-light);
  transition: opacity 0.2s;
  display: inline-block;
}

.tzph .link-arrow-light:hover { opacity: 0.7; }

/* ──────────────── SCROLL REVEAL ──────────────── */
.tzph .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tzph .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
   HERO — Cinematic full-viewport brand statement
   ════════════════════════════════════════════════ */
.tzph .hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tzph .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tzph .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.tzph .hero-slide.active { opacity: 1; }

.tzph .hero-slide .lazy-img {
  width: 100%;
  height: 100%;
}

.tzph .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 16, 10, 0.35) 0%, rgba(20, 16, 10, 0.6) 100%);
}

.tzph .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px var(--tzph-section-padding-x) 80px;
  max-width: 800px;
}

.tzph .hero-origin {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tzph-accent-light);
  margin-bottom: 20px;
}

.tzph .hero h1 {
  font-family: var(--tzph-font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.tzph .hero-tagline {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin: 0 auto 36px;
}

.tzph .hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tzph .hero-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tzph .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 194, 145, 0.15);
  border: 1px solid rgba(217, 194, 145, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--tzph-accent-light);
}

.tzph .hero-badge img { height: 16px; }

.tzph .hero-badge-eia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 139, 34, 0.15);
  border: 1px solid rgba(34, 139, 34, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #8dc98d;
}

.tzph .hero-badge-eia img { height: 16px; }

.tzph .hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tzph .hero-scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.tzph .scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: tzph-scroll-hint 2s infinite;
}

@keyframes tzph-scroll-hint {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ════════════════════════════════════════════════
   INTRODUCTION — Company story
   ════════════════════════════════════════════════ */
.tzph .intro {
  padding: 110px 0;
}

.tzph .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tzph .intro-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tzph-accent-light);
  margin-bottom: 14px;
}

.tzph .intro-heading {
  font-family: var(--tzph-font-heading);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--tzph-accent);
  line-height: 1.15;
}

.tzph .intro-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tzph-text-body);
  margin-bottom: 18px;
}

.tzph .intro-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 8px;
  padding: 24px 0;
  border-top: 1px solid var(--tzph-border-medium);
  border-bottom: 1px solid var(--tzph-border-medium);
}

.tzph .intro-metric { text-align: center; }

.tzph .intro-metric-val {
  display: block;
  font-family: var(--tzph-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--tzph-accent);
}

.tzph .intro-metric-lbl {
  display: block;
  font-size: 10px;
  color: var(--tzph-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════
   PROJECTS — Editorial showcase
   ════════════════════════════════════════════════ */
.tzph .projects {
  padding: var(--tzph-section-padding);
  background: var(--tzph-bg-secondary);
}

.tzph .project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tzph .project-card {
  border-radius: var(--tzph-radius-xl);
  overflow: hidden;
  border: 1px solid var(--tzph-border-light);
  background: var(--tzph-white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tzph .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(133, 108, 78, 0.1);
}

.tzph .project-card-img {
  position: relative;
  overflow: hidden;
}

.tzph .project-card-img .lazy-img {
  width: 100%;
  height: 300px;
}

.tzph .project-card-img .lazy-img img {
  transition: transform 0.7s ease;
}

.tzph .project-card:hover .project-card-img .lazy-img img {
  transform: scale(1.04);
}

.tzph .project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 80, 20, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.tzph .project-status.naiyang {
  background: rgba(34, 139, 34, 0.85);
}

.tzph .project-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.tzph .project-card-body {
  padding: 30px;
}

.tzph .project-card h3 {
  font-family: var(--tzph-font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--tzph-accent);
  margin-bottom: 4px;
}

.tzph .project-location {
  font-size: 12px;
  color: var(--tzph-text-muted);
  margin-bottom: 12px;
}

.tzph .project-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--tzph-text-body);
  margin-bottom: 20px;
}

.tzph .project-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--tzph-border-light);
  border-bottom: 1px solid var(--tzph-border-light);
  margin-bottom: 16px;
}

.tzph .project-details > div { text-align: center; }

.tzph .detail-label {
  display: block;
  font-size: 10px;
  color: var(--tzph-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tzph .detail-value {
  display: block;
  font-family: var(--tzph-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--tzph-accent);
  margin-top: 2px;
}

.tzph .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tzph .project-tags span {
  font-size: 10px;
  font-weight: 600;
  color: var(--tzph-accent);
  background: rgba(133, 108, 78, 0.06);
  border: 1px solid rgba(133, 108, 78, 0.1);
  border-radius: 16px;
  padding: 4px 12px;
}

.tzph .project-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--tzph-accent);
  transition: opacity 0.2s;
  display: inline-block;
}

.tzph .project-link:hover { opacity: 0.7; }

/* ════════════════════════════════════════════════
   SUSTAINABILITY — The Zero Concept
   ════════════════════════════════════════════════ */
.tzph .sustainability {
  padding: var(--tzph-section-padding);
  background: var(--tzph-accent);
  position: relative;
  overflow: hidden;
}

.tzph .sustainability .section-label { color: var(--tzph-accent-light); }
.tzph .sustainability .section-title { color: #F5F0E8; }
.tzph .sustainability .section-subtitle { color: rgba(255, 255, 255, 0.8); }

.tzph .sustainability-orb {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 194, 145, 0.06) 0%, transparent 70%);
}

.tzph .eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tzph .eco-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px 22px;
  border: 1px solid rgba(217, 194, 145, 0.15);
  text-align: center;
  transition: background 0.3s;
}

.tzph .eco-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tzph .eco-icon {
  margin-bottom: 14px;
  line-height: 1;
  color: var(--tzph-accent-light);
}

.tzph .eco-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.tzph .eco-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #F5F0E8;
  margin-bottom: 8px;
}

.tzph .eco-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ════════════════════════════════════════════════
   ABOUT / HERITAGE
   ════════════════════════════════════════════════ */
.tzph .about {
  padding: var(--tzph-section-padding);
  background: var(--tzph-bg-primary);
}

.tzph .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.tzph .about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tzph-text-body);
  margin-bottom: 16px;
}

.tzph .cred-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.tzph .cred-card {
  background: var(--tzph-bg-secondary);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--tzph-border-subtle);
}

.tzph .cred-card-value {
  font-family: var(--tzph-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--tzph-accent);
  margin-bottom: 2px;
}

.tzph .cred-card-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--tzph-text-muted);
}

.tzph .about-img {
  border-radius: var(--tzph-radius-lg);
  overflow: hidden;
  position: relative;
}

.tzph .about-img .lazy-img {
  width: 100%;
  height: 400px;
}

.tzph .about-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20, 16, 10, 0.85), transparent);
  padding: 30px 24px 24px;
}

.tzph .about-img-label {
  display: block;
  color: var(--tzph-accent-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tzph .about-img-title {
  display: block;
  color: #fff;
  font-size: 18px;
  font-family: var(--tzph-font-heading);
  font-weight: 600;
}

/* Leadership */
.tzph .leadership {
  padding-top: 40px;
  border-top: 1px solid var(--tzph-border-medium);
}

.tzph .leadership-heading {
  font-family: var(--tzph-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--tzph-accent);
  margin-bottom: 24px;
  text-align: center;
}

.tzph .leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tzph .leader-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--tzph-bg-secondary);
  border-radius: var(--tzph-radius-md);
  border: 1px solid var(--tzph-border-subtle);
}

.tzph .leader-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tzph-accent);
  color: var(--tzph-accent-light);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--tzph-font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.tzph .leader-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--tzph-text-primary);
  margin-bottom: 2px;
}

.tzph .leader-role {
  font-size: 11px;
  color: var(--tzph-text-muted);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════
   AWARDS
   ════════════════════════════════════════════════ */
.tzph .awards {
  background: var(--tzph-bg-secondary);
  padding: 60px var(--tzph-section-padding-x);
  border-bottom: 1px solid var(--tzph-border-subtle);
}

.tzph .badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.tzph .badge-card {
  background: var(--tzph-white);
  border-radius: var(--tzph-radius-md);
  padding: 20px 14px;
  border: 1px solid var(--tzph-border-subtle);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tzph .badge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.tzph .badge-card img {
  height: 32px;
  max-width: 80%;
  object-fit: contain;
}

.tzph .badge-card-title { font-size: 12px; font-weight: 600; color: var(--tzph-accent); }
.tzph .badge-card-sub { font-size: 10px; color: var(--tzph-text-muted); }

/* ════════════════════════════════════════════════
   INVESTMENT
   ════════════════════════════════════════════════ */
.tzph .investment {
  padding: var(--tzph-section-padding);
  background: var(--tzph-bg-primary);
}

.tzph .invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tzph .invest-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tzph-text-body);
  margin-bottom: 16px;
}

.tzph .invest-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tzph .invest-stat {
  background: var(--tzph-bg-secondary);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--tzph-border-subtle);
}

.tzph .invest-stat-icon {
  margin-bottom: 10px;
  color: var(--tzph-accent);
  opacity: 0.6;
}

.tzph .invest-stat-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.tzph .invest-stat-val {
  font-family: var(--tzph-font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--tzph-accent);
  line-height: 1.1;
}

.tzph .invest-stat-lbl {
  font-size: 12px;
  color: var(--tzph-text-muted);
  margin-top: 6px;
}

/* ════════════════════════════════════════════════
   PRIVILEGES / AMENITIES
   ════════════════════════════════════════════════ */
.tzph .privileges {
  padding: var(--tzph-section-padding);
  background: var(--tzph-bg-secondary);
}

.tzph .priv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tzph .priv-card {
  background: var(--tzph-white);
  border-radius: var(--tzph-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tzph-border-subtle);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tzph .priv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(133, 108, 78, 0.08);
}

.tzph .priv-img .lazy-img {
  width: 100%;
  height: 180px;
}

.tzph .priv-card h4 svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  vertical-align: -3px;
  margin-right: 6px;
  color: var(--tzph-accent);
  opacity: 0.7;
}

.tzph .priv-card h4 {
  font-family: var(--tzph-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--tzph-accent);
  padding: 18px 18px 6px;
}

.tzph .priv-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--tzph-text-body);
  padding: 0 18px 20px;
}

/* ════════════════════════════════════════════════
   LOCATIONS
   ════════════════════════════════════════════════ */
.tzph .locations {
  padding: var(--tzph-section-padding);
  background: var(--tzph-bg-primary);
}

.tzph .loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tzph .loc-card {
  border-radius: var(--tzph-radius-xl);
  overflow: hidden;
  border: 1px solid var(--tzph-border-light);
  background: var(--tzph-white);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tzph .loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(133, 108, 78, 0.08);
}

.tzph .loc-img .lazy-img {
  width: 100%;
  height: 220px;
}

.tzph .loc-body {
  padding: 28px;
}

.tzph .loc-body h3 svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
  vertical-align: -3px;
  margin-right: 6px;
  color: var(--tzph-accent);
  opacity: 0.7;
}

.tzph .loc-body h3 {
  font-family: var(--tzph-font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--tzph-accent);
  margin-bottom: 10px;
}

.tzph .loc-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--tzph-text-body);
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════════
   NEWS & MEDIA
   ════════════════════════════════════════════════ */
.tzph .news {
  padding: var(--tzph-section-padding);
  background: var(--tzph-bg-secondary);
}

.tzph .news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tzph .news-card {
  background: var(--tzph-white);
  border-radius: var(--tzph-radius-md);
  padding: 26px 22px;
  border: 1px solid var(--tzph-border-subtle);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.tzph .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(133, 108, 78, 0.06);
}

.tzph .news-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tzph-accent-light);
  margin-bottom: 10px;
}

.tzph .news-card h4 {
  font-family: var(--tzph-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--tzph-accent);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tzph .news-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--tzph-text-body);
  flex: 1;
  margin-bottom: 14px;
}

.tzph .news-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--tzph-accent);
  transition: opacity 0.2s;
}

.tzph .news-link:hover { opacity: 0.7; }

/* ════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════ */
.tzph .reviews {
  padding: var(--tzph-section-padding);
  background: var(--tzph-bg-primary);
}

.tzph .rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tzph .rev-card {
  background: var(--tzph-white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(133, 108, 78, 0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tzph .rev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(133, 108, 78, 0.06);
}

.tzph .rev-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.tzph .rev-stars span { color: #F59E0B; font-size: 14px; }

.tzph .rev-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--tzph-text-body);
  margin: 0 0 16px;
  font-style: italic;
}

.tzph .rev-author { display: flex; align-items: center; gap: 10px; }

.tzph .rev-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tzph-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tzph-accent-light);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--tzph-font-heading);
  flex-shrink: 0;
}

.tzph .rev-name { font-size: 13px; font-weight: 600; color: var(--tzph-text-primary); }
.tzph .rev-source { font-size: 11px; color: var(--tzph-text-muted); }

/* ════════════════════════════════════════════════
   COMMUNITY
   ════════════════════════════════════════════════ */
.tzph .community {
  padding: 48px var(--tzph-section-padding-x);
  background: var(--tzph-bg-secondary);
  border-top: 1px solid var(--tzph-border-subtle);
  border-bottom: 1px solid var(--tzph-border-subtle);
}

.tzph .community-inner {
  max-width: var(--tzph-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 0 var(--tzph-section-padding-x);
}

.tzph .community-eyebrow svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.5;
  vertical-align: -2px;
  margin-right: 4px;
}

.tzph .community-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tzph-accent-light);
  margin-bottom: 6px;
}

.tzph .community-inner h3 {
  font-family: var(--tzph-font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--tzph-accent);
  margin-bottom: 8px;
}

.tzph .community-inner p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--tzph-text-body);
}

/* ════════════════════════════════════════════════
   LIMOUSINE
   ════════════════════════════════════════════════ */
.tzph .limousine {
  padding: 48px var(--tzph-section-padding-x);
  background: linear-gradient(135deg, #F5F0E8 0%, #EDE6D8 100%);
  border-top: 1px solid rgba(217, 194, 145, 0.15);
  border-bottom: 1px solid rgba(217, 194, 145, 0.15);
}

.tzph .limo-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.tzph .limo-grid h3 {
  font-family: var(--tzph-font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  color: var(--tzph-accent);
  margin: 0 0 6px;
}

.tzph .limo-grid h3 > svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
  vertical-align: -4px;
  margin-right: 6px;
  opacity: 0.7;
}

.tzph .limo-grid h3 span { color: var(--tzph-accent-light); }

.tzph .limo-grid p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--tzph-text-body);
  margin: 0;
}

.tzph .limo-cta {
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: var(--tzph-accent);
  color: #F5F0E8;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--tzph-font-body);
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.tzph .limo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(133, 108, 78, 0.2);
}

/* ════════════════════════════════════════════════
   CONTACT CTA
   ════════════════════════════════════════════════ */
.tzph .contact-cta {
  padding: var(--tzph-section-padding);
  background: linear-gradient(165deg, #856C4E 0%, #6B563E 100%);
  position: relative;
  overflow: hidden;
}

.tzph .contact-orb {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 194, 145, 0.06) 0%, transparent 70%);
}

.tzph .contact-inner {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.tzph .contact-cta .section-title { color: #F5F0E8; margin-bottom: 8px; }
.tzph .contact-cta .section-subtitle { color: rgba(255, 255, 255, 0.8); font-size: 15px; line-height: 1.65; }

.tzph .contact-details {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tzph .contact-detail {
  text-align: center;
}

.tzph .contact-detail > svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
  color: var(--tzph-accent-light);
  margin-bottom: 6px;
  opacity: 0.8;
}

.tzph .contact-detail-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tzph-accent-light);
  margin-bottom: 4px;
}

.tzph .contact-detail a,
.tzph .contact-detail span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.tzph .contact-detail a:hover {
  color: #fff;
}

/* ════════════════════════════════════════════════
   LEAD FORM
   ════════════════════════════════════════════════ */
.tzph .lead-form {
  border-radius: var(--tzph-radius-xl);
  padding: 32px 26px;
  backdrop-filter: blur(20px);
  text-align: left;
}

.tzph .lead-form[data-variant="dark"] {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(217, 194, 145, 0.3);
}

.tzph .lead-form h3 {
  font-family: var(--tzph-font-heading);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 4px;
}

.tzph .lead-form[data-variant="dark"] h3 { color: #fff; }

.tzph .form-subtitle { font-size: 12px; margin: 0 0 18px; line-height: 1.5; }
.tzph .lead-form[data-variant="dark"] .form-subtitle { color: #d5d0c0; }

.tzph .form-fields { display: flex; flex-direction: column; gap: 10px; }

.tzph .form-fields select,
.tzph .form-fields input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--tzph-font-body);
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.4;
  height: auto;
}

.tzph .lead-form[data-variant="dark"] .form-fields select,
.tzph .lead-form[data-variant="dark"] .form-fields input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.tzph .lead-form[data-variant="dark"] .form-fields input::placeholder,
.tzph .lead-form[data-variant="dark"] .form-fields select {
  color: rgba(255, 255, 255, 0.65);
}

.tzph .lead-form .form-fields select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%238A8A7A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.tzph .lead-form .field-error {
  border-color: rgba(239, 68, 68, 0.6) !important;
}

.tzph .agent-label { font-size: 12px; margin-bottom: 6px; }
.tzph .lead-form[data-variant="dark"] .agent-label { color: #d5d0c0; }

.tzph .agent-options { display: flex; gap: 8px; }

.tzph .agent-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--tzph-font-body);
  transition: all 0.2s;
}

.tzph .lead-form[data-variant="dark"] .agent-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.65);
}

.tzph .lead-form[data-variant="dark"] .agent-btn.selected {
  border-color: var(--tzph-accent-light);
  background: rgba(217, 194, 145, 0.15);
  color: #fff;
  font-weight: 600;
}

.tzph .form-error-msg {
  color: #ef4444;
  font-size: 12px;
  margin: 2px 0 0;
  text-align: center;
  display: none;
}

.tzph .form-error-msg.visible { display: block; }

.tzph .form-submit {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--tzph-font-body);
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
}

.tzph .lead-form[data-variant="dark"] .form-submit { background: var(--tzph-accent-light); color: #3A2A1A; }

.tzph .form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tzph .form-submit:disabled { cursor: not-allowed; opacity: 0.7; }

.tzph .form-note { font-size: 11px; margin: 10px 0 0; text-align: center; }
.tzph .lead-form[data-variant="dark"] .form-note { color: #d5d0c0; }

.tzph .form-success { display: none; text-align: center; padding: 40px; }
.tzph .form-success.visible { display: block; }

.tzph .form-success h3 {
  font-family: var(--tzph-font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--tzph-accent-light);
  margin: 0 0 8px;
}

.tzph .form-success p { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; }

/* ════════════════════════════════════════════════
   WHATSAPP FAB
   ════════════════════════════════════════════════ */
.tzph .wa-fab {
  position: fixed;
  bottom: 76px;
  right: 20px;
  z-index: 997;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tzph .wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.tzph .wa-fab svg { width: 26px; height: 26px; fill: #fff; }

/* ════════════════════════════════════════════════
   STICKY MOBILE CTA
   ════════════════════════════════════════════════ */
.tzph .sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(133, 108, 78, 0.95);
  backdrop-filter: blur(12px);
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
  border-top: 1px solid rgba(217, 194, 145, 0.15);
}

.tzph .sticky-mobile-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.tzph .sticky-cta-info .price { color: #F5F0E8; font-size: 13px; font-weight: 600; }
.tzph .sticky-cta-info .sold-tag { color: var(--tzph-accent-light); font-size: 11px; font-weight: 700; margin-left: 8px; }
.tzph .sticky-cta-info .roi { color: var(--tzph-accent-light); font-size: 11px; }

.tzph .sticky-cta-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  background: var(--tzph-accent-light);
  color: var(--tzph-accent);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--tzph-font-body);
  cursor: pointer;
}

/* ════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════ */
@keyframes tzph-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.tzph .pulse-dot {
  animation: tzph-pulse 2s infinite;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .tzph .intro-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .tzph .project-showcase { grid-template-columns: 1fr !important; }
  .tzph .project-card-img .lazy-img { height: 240px; }
  .tzph .about-grid { grid-template-columns: 1fr !important; }
  .tzph .invest-grid { grid-template-columns: 1fr !important; }
  .tzph .loc-grid { grid-template-columns: 1fr !important; }
  .tzph .news-grid { grid-template-columns: 1fr 1fr !important; }
  .tzph .leadership-grid { grid-template-columns: 1fr 1fr !important; }
  .tzph .priv-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
  :root { --tzph-section-padding: 70px 20px; }
  .tzph .hero { min-height: 90vh; min-height: 90svh; }
  .tzph .hero h1 { font-size: 34px; }
  .tzph .hero-scroll-hint { display: none; }
  .tzph .intro { padding: 70px 0; }
  .tzph .intro-metrics { grid-template-columns: 1fr 1fr !important; }
  .tzph .eco-grid { grid-template-columns: 1fr 1fr !important; }
  .tzph .rev-grid { grid-template-columns: 1fr !important; }
  .tzph .news-grid { grid-template-columns: 1fr !important; }
  .tzph .invest-stats { grid-template-columns: 1fr 1fr !important; }
  .tzph .cred-cards { grid-template-columns: 1fr !important; }
  .tzph .leadership-grid { grid-template-columns: 1fr 1fr !important; }
  .tzph .priv-grid { grid-template-columns: 1fr !important; }
  .tzph .badge-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .tzph .limo-grid { grid-template-columns: 1fr !important; text-align: center; justify-items: center; }
  .tzph .community-inner { grid-template-columns: 1fr !important; text-align: center; justify-items: center; }
  .tzph .contact-details { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .tzph .hero h1 { font-size: 28px; }
  .tzph .hero-tagline { font-size: 14px; }
  .tzph .hero-actions { flex-direction: column; align-items: center; }
  .tzph .intro-metrics { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .tzph .eco-grid { grid-template-columns: 1fr !important; }
  .tzph .badge-grid { grid-template-columns: 1fr 1fr !important; }
  .tzph .leadership-grid { grid-template-columns: 1fr !important; }
  .tzph .invest-stats { grid-template-columns: 1fr !important; }
}

@media (min-width: 769px) {
  .tzph .sticky-mobile-cta { display: none !important; }
}
