.ph-body {
  margin: 0;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  color: #24352e;
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(168, 214, 198, 0.35), transparent 55%),
    radial-gradient(800px 420px at 100% 10%, rgba(255, 214, 196, 0.4), transparent 50%),
    linear-gradient(180deg, #f7fbf8 0%, #f3eee7 55%, #f7fbf8 100%);
  min-height: 100vh;
}

.ph-top {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 248, 0.84);
  border-bottom: 1px solid rgba(42, 74, 61, 0.08);
}

.ph-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.ph-brand {
  font-family: "Fredoka", "Vazirmatn", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2a4a3d;
}

.ph-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.ph-nav a {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: #5d7368;
  transition: 0.2s ease;
}

.ph-nav a:hover,
.ph-nav-active {
  background: rgba(47, 86, 69, 0.1);
  color: #2a4a3d;
}

.ph-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.ph-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ph-ken 16s ease-in-out infinite alternate;
}

.ph-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 53, 46, 0.15) 0%, rgba(36, 53, 46, 0.2) 40%, rgba(36, 53, 46, 0.72) 100%);
}

.ph-hero-copy {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.4rem;
  color: #f7fbf8;
  animation: ph-rise 0.9s ease both;
}

.ph-eyebrow {
  margin: 0 0 0.5rem;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  opacity: 0.9;
}

.ph-hero h1 {
  margin: 0;
  font-family: "Fredoka", "Vazirmatn", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
}

.ph-lead {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  line-height: 1.85;
  font-size: 1.05rem;
  color: rgba(247, 251, 248, 0.92);
}

.ph-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.ph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
}

.ph-btn-primary {
  background: #f4a48a;
  color: #3a241c;
  box-shadow: 0 12px 28px rgba(244, 164, 138, 0.35);
}

.ph-btn-primary:hover { filter: brightness(1.05); }

.ph-btn-ghost {
  background: rgba(247, 251, 248, 0.16);
  color: #f7fbf8;
  border: 1px solid rgba(247, 251, 248, 0.35);
}

.ph-btn-ghost:hover { background: rgba(247, 251, 248, 0.26); }

.ph-intro {
  padding: 2.6rem 0 1rem;
  animation: ph-rise 0.9s ease 0.1s both;
}

.ph-intro h2,
.ph-section-head h2,
.ph-seo h2 {
  margin: 0 0 0.7rem;
  font-family: "Fredoka", "Vazirmatn", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #2a4a3d;
}

.ph-intro p,
.ph-seo p {
  margin: 0;
  color: #5a6d64;
  line-height: 1.9;
  max-width: 48rem;
}

.ph-spaces { padding: 1.5rem 0 2.8rem; }

.ph-section-head {
  margin-bottom: 1.3rem;
}

.ph-section-head p {
  margin: 0;
  color: #6b7f75;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ph-card {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(36, 53, 46, 0.08);
  opacity: 0;
  transform: translateY(18px);
  animation: ph-rise 0.75s ease forwards;
  animation-delay: var(--d, 0ms);
}

.ph-card-media {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
}

.ph-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ph-card:hover .ph-card-media img {
  transform: scale(1.05);
}

.ph-card-copy {
  padding: 1rem 1.1rem 1.2rem;
}

.ph-card-copy h3 {
  margin: 0 0 0.35rem;
  font-family: "Fredoka", "Vazirmatn", sans-serif;
  font-size: 1.25rem;
  color: #2a4a3d;
}

.ph-card-copy p {
  margin: 0;
  color: #5a6d64;
  line-height: 1.7;
  font-size: 0.95rem;
}

.ph-seo {
  padding: 0.5rem 0 2.8rem;
}

.ph-seo a {
  color: #2f5645;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ph-foot {
  border-top: 1px solid rgba(42, 74, 61, 0.1);
  background: rgba(255, 255, 255, 0.45);
}

.ph-foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  color: #5d7368;
}

@keyframes ph-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ph-ken {
  from { transform: scale(1.02); }
  to { transform: scale(1.08) translate3d(0, -1.5%, 0); }
}

@media (max-width: 760px) {
  .ph-grid { grid-template-columns: 1fr; }
  .ph-hero { min-height: 68vh; }
  .ph-top-inner { flex-direction: column; align-items: flex-start; }
}
