/* ============================================================
   AKSULAR — private-hire.css
   ============================================================ */

.ph-body {
  background: #0B1628;
  color: #FAF3E0;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.ph-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* ── Shared section heading ── */
.ph-chapter {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  display: block;
  margin-bottom: -1.5rem;
  letter-spacing: -0.02em;
}

.ph-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: #E8C96D;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.ph-section-title em {
  font-style: italic;
  color: #C9A84C;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
}

.ph-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.ph-section-sub {
  font-size: 0.9rem;
  color: rgba(250,243,224,0.5);
  line-height: 1.8;
  margin-top: 1rem;
}

.ph-gold-rule {
  height: 1px;
  width: 0;
  background: linear-gradient(to right, transparent, #C9A84C, transparent);
  margin: 1.2rem auto 0;
  transition: width 1.1s cubic-bezier(0.22,1,0.36,1);
}
.ph-gold-rule.is-visible { width: 120px; }

/* ── Scroll reveal ── */
.ph-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity  0.75s ease,
    transform 0.75s cubic-bezier(0.22,1,0.36,1);
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.ph-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ph-reveal--right {
  transform: translateX(40px);
}
.ph-reveal--right.is-visible {
  transform: translateX(0);
}

/* ============================================================
   HERO
   ============================================================ */
.ph-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ph-hero__bg {
  position: absolute;
  inset: -5%;
  background:
    url('https://aksular-restaurant.co.uk/wp-content/uploads/2026/03/AKSULAR-99-scaled.jpg')
    center 30% / cover no-repeat;
  animation: ph-kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes ph-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.ph-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(11,22,40,0.95) 0%,
      rgba(11,22,40,0.65) 50%,
      rgba(11,22,40,0.35) 100%),
    linear-gradient(to top,
      rgba(11,22,40,0.6) 0%, transparent 55%);
}

/* Film grain */
.ph-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  animation: ph-grain 0.5s steps(1) infinite;
}

@keyframes ph-grain {
  0%   { background-position:   0%   0%; }
  20%  { background-position: -15%   5%; }
  40%  { background-position:  20%  25%; }
  60%  { background-position:  15%   5%; }
  80%  { background-position:  25%  35%; }
  100% { background-position: -10%  10%; }
}

/* Decorative ring */
.ph-hero__ring {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(220px, 28vw, 380px);
  height: clamp(220px, 28vw, 380px);
  z-index: 2;
  pointer-events: none;
  animation: ph-ring-spin 60s linear infinite;
}

@keyframes ph-ring-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* SVG ring stroke draw animation */
.ph-ring-draw {
  transition: stroke-dashoffset 2.2s cubic-bezier(0.22,1,0.36,1) 0.4s;
}
.ph-ring-draw.is-drawn { stroke-dashoffset: 0; }

/* Floating dots */
.ph-hero__dot {
  position: absolute;
  border-radius: 50%;
  background: #C9A84C;
  pointer-events: none;
  z-index: 2;
}
.ph-hero__dot--1 {
  width: 4px; height: 4px;
  top: 28%; right: 18%;
  opacity: 0.5;
  animation: ph-float 6s ease-in-out infinite;
}
.ph-hero__dot--2 {
  width: 6px; height: 6px;
  top: 55%; right: 32%;
  opacity: 0.3;
  animation: ph-float 8s ease-in-out 1s infinite;
}
.ph-hero__dot--3 {
  width: 3px; height: 3px;
  top: 70%; right: 22%;
  opacity: 0.4;
  animation: ph-float 7s ease-in-out 2s infinite;
}

@keyframes ph-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Vertical side text */
.ph-hero__side {
  position: absolute;
  right: 1.8rem;
  top: 0; bottom: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  pointer-events: none;
  animation: ph-fade 1s 1s both;
}
.ph-hero__side span:not(.ph-side-dot) {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
}
.ph-side-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(201,168,76,0.45);
}

/* Content */
.ph-hero__content {
  position: relative;
  z-index: 5;
  padding: 0 9vw;
  max-width: 860px;
}

/* Line wrap/reveal system */
.ph-lw {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.ph-l {
  display: block;
  animation: ph-line-up 1s cubic-bezier(0.22,1,0.36,1) both;
}
.ph-l--em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #C9A84C;
}

.ph-hero__eyebrow .ph-l   { animation-delay: 0.25s; }
.ph-hero__title .ph-lw:nth-child(1) .ph-l { animation-delay: 0.45s; }
.ph-hero__title .ph-lw:nth-child(2) .ph-l { animation-delay: 0.6s; }
.ph-hero__title .ph-lw:nth-child(3) .ph-l { animation-delay: 0.72s; }
.ph-hero__sub   .ph-lw:nth-child(1) .ph-l { animation-delay: 0.92s; }
.ph-hero__sub   .ph-lw:nth-child(2) .ph-l { animation-delay: 1.04s; }

@keyframes ph-line-up {
  from { transform: translateY(108%); }
  to   { transform: translateY(0); }
}

@keyframes ph-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ph-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ph-hero__eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(232,201,109,0.85);
  margin-bottom: 1.4rem;
}

.ph-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.02;
  color: #F4E1A8;
  margin-bottom: 1.8rem;
}

.ph-hero__sub {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: rgba(250,243,224,0.58);
  line-height: 1.9;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.ph-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: ph-fade-up 0.9s 1.22s both;
}

/* Shared buttons */
.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.8rem;
  transition: background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.ph-btn--gold {
  background: #C9A84C;
  color: #0B1628;
  border: 1px solid #C9A84C;
}
.ph-btn--gold:hover {
  background: #E8C96D;
  border-color: #E8C96D;
  box-shadow: 0 0 24px rgba(201,168,76,0.4);
}
.ph-btn--ghost {
  background: transparent;
  color: rgba(250,243,224,0.75);
  border: 1px solid rgba(201,168,76,0.35);
}
.ph-btn--ghost:hover {
  border-color: #C9A84C;
  color: #E8C96D;
  background: rgba(201,168,76,0.07);
}
.ph-btn--submit { cursor: pointer; font-family: inherit; }
.ph-btn--submit.is-loading { opacity: 0.6; pointer-events: none; }

/* Scroll indicator */
.ph-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 9vw;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  animation: ph-fade-up 0.8s 1.5s both;
}
.ph-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #C9A84C, transparent);
  animation: ph-scroll-pulse 2s ease-in-out infinite;
}
@keyframes ph-scroll-pulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   OCCASIONS MARQUEE
   ============================================================ */
.ph-occasions {
  background: #080f1c;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  padding: 0;
}

.ph-occasions__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ph-marquee 32s linear infinite;
  padding: 1rem 0;
}

.ph-occasions__track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.38);
  padding: 0 1.2rem;
}

.ph-occ-sep {
  color: #C9A84C !important;
  opacity: 0.6 !important;
  padding: 0 0.3rem !important;
  letter-spacing: 0 !important;
}

@keyframes ph-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   INTRO
   ============================================================ */
.ph-intro {
  padding: 7rem 0;
}

.ph-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ph-intro__text .ph-chapter { margin-bottom: -2rem; }

.ph-intro__body {
  font-size: 0.92rem;
  color: rgba(250,243,224,0.58);
  line-height: 1.95;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.ph-intro__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.ph-pill {
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.3);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.8);
  background: rgba(201,168,76,0.05);
}

.ph-intro__img-wrap {
  position: relative;
  overflow: hidden;
}

.ph-intro__img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.8s ease;
}

.ph-intro__img-wrap:hover img { transform: scale(1.04); }

.ph-intro__img-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: #0B1628;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.ph-badge__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
}
.ph-badge__label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.5);
  margin-top: 0.3rem;
}

/* ============================================================
   SPACES
   ============================================================ */
.ph-spaces {
  padding: 6rem 0 7rem;
  background: #080f1c;
}

.ph-spaces__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ph-space-card {
  background: #0f1e35;
  border: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.ph-space-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.ph-space-card__img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.ph-space-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.ph-space-card:hover .ph-space-card__img-wrap img {
  transform: scale(1.08);
}

.ph-space-card__cap {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(11,22,40,0.88);
  border: 1px solid rgba(201,168,76,0.35);
  color: #C9A84C;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
}

.ph-space-card__body {
  padding: 2rem 1.8rem 2.2rem;
  position: relative;
}

.ph-space-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
}

.ph-space-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #F4E1A8;
  margin-bottom: 0.9rem;
  transition: color 0.3s;
}

.ph-space-card:hover .ph-space-card__title { color: #E8C96D; }

.ph-space-card__desc {
  font-size: 0.82rem;
  color: rgba(250,243,224,0.48);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.ph-space-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.ph-space-card__features li {
  font-size: 0.78rem;
  color: rgba(250,243,224,0.55);
  padding-left: 1.1rem;
  position: relative;
}

.ph-space-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: #C9A84C;
}

.ph-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}
.ph-card-link:hover { gap: 0.8rem; color: #E8C96D; }
.ph-card-link span { font-size: 1rem; }

/* ============================================================
   INCLUDES
   ============================================================ */
.ph-includes {
  padding: 7rem 0;
}

.ph-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

.ph-include-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.ph-include-item__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.ph-include-item__icon svg { width: 22px; height: 22px; color: #C9A84C; }

.ph-include-item:hover .ph-include-item__icon {
  border-color: #C9A84C;
  background: rgba(201,168,76,0.08);
}

.ph-include-item__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #F4E1A8;
}

.ph-include-item__desc {
  font-size: 0.82rem;
  color: rgba(250,243,224,0.45);
  line-height: 1.75;
}

/* ============================================================
   STATS
   ============================================================ */
.ph-stats {
  background: linear-gradient(135deg, #0d1a2e 0%, #132240 100%);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 5rem 3rem;
}

.ph-stats__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.ph-stat {
  text-align: center;
  padding: 1rem;
}

.ph-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  display: inline;
}

.ph-stat__suf {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #C9A84C;
  font-weight: 600;
  vertical-align: top;
  margin-top: 0.2em;
  display: inline;
}

.ph-stat__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.38);
  margin-top: 0.8rem;
}

.ph-stat__divider {
  width: 1px;
  height: 60px;
  background: rgba(201,168,76,0.15);
}

/* ============================================================
   ENQUIRY FORM
   ============================================================ */
.ph-enquiry {
  padding: 7rem 0 8rem;
  background: #080f1c;
}

.ph-form {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.ph-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.ph-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ph-form__group--full {
  margin-bottom: 1.2rem;
}

.ph-form__group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,243,224,0.55);
}

.ph-form__group label span { color: #C9A84C; }

.ph-form__group input,
.ph-form__group select,
.ph-form__group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: #FAF3E0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
}

.ph-form__group input::placeholder,
.ph-form__group textarea::placeholder { color: rgba(250,243,224,0.22); }

.ph-form__group input:focus,
.ph-form__group select:focus,
.ph-form__group textarea:focus {
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.ph-form__group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.ph-form__group select option { background: #0f1e35; color: #FAF3E0; }

.ph-form__group textarea { resize: vertical; min-height: 130px; }

.ph-form__footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.ph-form__note {
  font-size: 0.76rem;
  color: rgba(250,243,224,0.38);
  line-height: 1.6;
}

.ph-form__note a { color: #C9A84C; text-decoration: none; }
.ph-form__note a:hover { color: #E8C96D; }

/* Success state */
.ph-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1rem;
}
.ph-form__success.is-visible { display: flex; }
.ph-form__success svg { color: #C9A84C; }
.ph-form__success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #E8C96D;
}
.ph-form__success p {
  font-size: 0.9rem;
  color: rgba(250,243,224,0.55);
  max-width: 420px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ph-footer {
  background: #060d18;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 4rem 0 0;
}

.ph-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.ph-footer__brand p {
  font-size: 0.82rem;
  color: rgba(250,243,224,0.38);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 260px;
}

.ph-footer__links h4,
.ph-footer__contact h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1.2rem;
}

.ph-footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ph-footer__links a {
  font-size: 0.83rem;
  color: rgba(250,243,224,0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.ph-footer__links a:hover { color: #E8C96D; }

.ph-footer__contact p {
  font-size: 0.83rem;
  color: rgba(250,243,224,0.42);
  margin-bottom: 0.4rem;
}
.ph-footer__contact a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ph-footer__contact a:hover { color: #E8C96D; }

.ph-footer__bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(250,243,224,0.28);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ph-container { padding: 0 2rem; }
  .ph-spaces__grid { grid-template-columns: 1fr 1fr; }
  .ph-spaces__grid .ph-space-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .ph-includes__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .ph-hero__content { padding: 0 6vw 8rem; }
  .ph-hero__side    { display: none; }
  .ph-hero__ring    { opacity: 0.5; width: 180px; height: 180px; right: 2vw; }

  .ph-intro__grid   { grid-template-columns: 1fr; gap: 3rem; }
  .ph-intro__img-wrap img { height: 380px; }
  .ph-intro__img-badge { left: 1rem; bottom: 1rem; }

  .ph-spaces__grid  { grid-template-columns: 1fr; }
  .ph-spaces__grid .ph-space-card:last-child { grid-column: auto; max-width: 100%; }

  .ph-includes__grid { grid-template-columns: 1fr 1fr; }

  .ph-stats__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
  .ph-stat__divider { display: none; }

  .ph-footer__inner { grid-template-columns: 1fr 1fr; }
  .ph-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .ph-container { padding: 0 1.2rem; }
  .ph-hero__content { padding: 0 5vw 9rem; }
  .ph-hero__title   { font-size: clamp(3rem, 12vw, 4.5rem); }
  .ph-hero__actions { flex-direction: column; gap: 0.8rem; }
  .ph-btn           { justify-content: center; }

  .ph-intro, .ph-spaces, .ph-includes, .ph-enquiry { padding: 4rem 0 5rem; }
  .ph-section-head  { margin-bottom: 2.8rem; }
  .ph-intro__img-wrap img { height: 300px; }

  .ph-includes__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ph-include-item  { flex-direction: row; align-items: flex-start; gap: 1.2rem; }

  .ph-stats         { padding: 3.5rem 1.5rem; }
  .ph-stats__inner  { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }

  .ph-form__row     { grid-template-columns: 1fr; }
  .ph-form__footer  { flex-direction: column; align-items: flex-start; }

  .ph-footer__inner { grid-template-columns: 1fr; }
  .ph-footer        { padding: 3rem 0 0; }
}
