﻿/* Copyright 2026 HomeOne Interiors. All rights reserved. */
.ph-hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.ph-bg { position: absolute; inset: 0; z-index: 0; }
.ph-bg-img {
  position: absolute; inset: 0;
  background: url('/img/about/about-page-hero-interior-design-studio.webp') center/cover no-repeat;
  transform: scale(1.07);
  animation: phDrift 24s ease-in-out infinite alternate;
}
@keyframes phDrift {
  from { transform: scale(1.07) translate(0, 0); }
  to   { transform: scale(1.07) translate(-2.5%, -1.2%); }
}
.ph-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(6,13,26,.97) 0%,
    rgba(6,13,26,.9) 38%,
    rgba(6,13,26,.55) 68%,
    rgba(6,13,26,.8) 100%
  );
}
.ph-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,1) 0%, transparent 45%);
}
.ph-overlay-3 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 72% 38%, rgba(26,107,218,.14) 0%, transparent 60%);
  animation: phGlowPulse 7s ease-in-out infinite alternate;
}
@keyframes phGlowPulse {
  from { opacity: .5; }
  to   { opacity: 1; }
}
.ph-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%; z-index: 2; pointer-events: none;
  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='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025; animation: grain 8s steps(10) infinite;
}
.ph-beam {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(112deg, transparent 30%, rgba(26,107,218,.055) 50%, transparent 70%);
  animation: phBeamMove 12s ease-in-out infinite alternate;
}
@keyframes phBeamMove {
  from { transform: skewX(-6deg) translateX(-10%); opacity: .3; }
  to   { transform: skewX(-6deg) translateX(10%); opacity: 1; }
}
.ph-scan {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(26,107,218,.35) 25%,
    rgba(26,107,218,.65) 50%,
    rgba(26,107,218,.35) 75%,
    transparent 100%
  );
  animation: phScanMove 8s linear infinite;
}
@keyframes phScanMove {
  0%   { top: 12%; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { top: 88%; opacity: 0; }
}
.ph-ghost-yr {
  position: absolute; right: -4%; bottom: 8%; z-index: 1; pointer-events: none; user-select: none;
  font-family: var(--fh); font-size: clamp(12rem, 28vw, 26rem); font-weight: 700;
  line-height: 1; letter-spacing: -.04em; color: var(--blue); opacity: .045;
  animation: phGhostDrift 20s ease-in-out infinite alternate;
}
@keyframes phGhostDrift {
  from { transform: translate(0, 0) rotate(-1.5deg); }
  to   { transform: translate(-2%, -3%) rotate(-.5deg); }
}
.ph-frame { position: absolute; inset: 24px; z-index: 3; pointer-events: none; }
.ph-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(26,107,218,.45); border-style: solid;
  transition: width .6s var(--ease), height .6s var(--ease);
}
.ph-hero:hover .ph-corner { width: 56px; height: 56px; }
.ph-corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.ph-corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.ph-corner-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.ph-corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.ph-content {
  position: relative; z-index: 5; padding: 80px 0 180px; max-width: 820px;
}
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 48px;
  opacity: 0; animation: phFadeIn .8s var(--ease) .2s forwards;
}
@keyframes phFadeIn { to { opacity: 1; } }
.ph-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(26,107,218,.9), 0 0 24px rgba(26,107,218,.5);
  animation: phDotPulse 2.4s ease-in-out infinite;
}
@keyframes phDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(26,107,218,.7); }
  50%       { transform: scale(1.6); box-shadow: 0 0 22px rgba(26,107,218,1), 0 0 40px rgba(26,107,218,.4); }
}
.ph-h1 {
  font-size: clamp(4.5rem, 11vw, 10rem); font-weight: 700;
  line-height: .92; letter-spacing: -.04em; margin: 0 0 36px;
}
.ph-h1-row { display: block; overflow: hidden; }
.ph-h1-inner {
  display: block; transform: translateY(115%);
  animation: phRowUp .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.ph-h1-row:nth-child(2) .ph-h1-inner { animation-delay: .11s; }
@keyframes phRowUp { to { transform: translateY(0); } }
.ph-h1-blue { color: var(--blue); }

.ph-desc {
  font-size: 17px; color: var(--mute); line-height: 1.8; max-width: 500px; margin-bottom: 48px;
}
.ph-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.ph-ctas .btn-outline {
  border-color: rgba(255,255,255,.45);
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.ph-ctas .btn-outline:hover {
  border-color: rgba(255,255,255,.85);
  color: var(--white);
  background: rgba(255,255,255,.16);
}
.ph-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  border-top: 1px solid rgba(26,107,218,.14);
}
.ph-bottom-inner { display: flex; align-items: stretch; }
.ph-bottom-stats {
  display: flex; width: 100%; background: rgba(6,13,26,.55); backdrop-filter: blur(14px);
}
.ph-bstat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border-right: 1px solid rgba(26,107,218,.1); text-align: center;
}
.ph-bstat:last-child { border-right: none; }
.ph-bstat strong {
  font-family: var(--fh); font-size: 1.35rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.ph-bstat strong em { font-style: normal; color: var(--blue); font-size: .95em; }
.ph-bstat span {
  font-size: 9.5px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px;
}
.ph-scroll-cue {
  position: absolute; bottom: 90px; right: 44px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ph-scroll-line {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(26,107,218,.9), transparent);
  animation: phScrollPulse 2.8s ease-in-out infinite;
}
@keyframes phScrollPulse {
  0%, 100% { transform: scaleY(.2); transform-origin: top; opacity: .3; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.ph-scroll-label {
  font-size: 9px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(26,107,218,.55); writing-mode: vertical-rl;
}
.promises-grid .promise-item:nth-child(2).in { transition-delay: .16s; }
.promises-grid .promise-item:nth-child(3).in { transition-delay: .32s; }
.tl-dot-lit {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,107,218,.2), 0 0 20px rgba(26,107,218,.8), 0 0 40px rgba(26,107,218,.35);
  transform: scale(1.5);
}
.brand-story { background: var(--bg2); padding: 120px 0; overflow: hidden; }
.brand-story-inner { display: grid; grid-template-columns: 220px 1fr; gap: 80px; align-items: start; }
.bs-ghost {
  font-family: var(--fh); font-size: clamp(5rem, 10vw, 9rem); font-weight: 700;
  color: var(--blue); opacity: .07; line-height: 1; user-select: none; margin-top: 12px;
}
.brand-story .eyebrow { margin-bottom: 16px; }
.brand-story h2 { margin-bottom: 28px; }
.brand-story h2 em { font-style: normal; color: var(--blue); }
.brand-story p { font-size: 16px; color: var(--mute); line-height: 1.8; margin-bottom: 18px; }
.brand-pull {
  border-left: 3px solid var(--blue); padding: 16px 0 16px 28px; margin: 36px 0;
  font-family: var(--fh); font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600;
  color: var(--white); line-height: 1.6;
}
.promises-sec { padding: 100px 0; background: var(--bg); }
.promises-head { text-align: center; margin-bottom: 64px; }
.promises-head h2 em { font-style: normal; color: var(--blue); }
.promises-head p { font-size: 16px; color: var(--mute); max-width: 560px; margin: 16px auto 0; }
.promises-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.promise-item {
  padding: 52px 40px; background: var(--bg2);
  border-right: 1px solid var(--line); position: relative; transition: background .3s var(--ease);
}
.promise-item:last-child { border-right: none; }
.promise-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: var(--blue); transition: height .5s var(--ease);
}
.promise-item.in::before,
.promise-item:hover::before { height: 100%; }
.promise-item:hover { background: var(--bg3); }
.promise-n {
  font-family: var(--fh); font-size: 4rem; font-weight: 700;
  color: var(--blue); opacity: .1; line-height: 1; margin-bottom: 24px; transition: opacity .3s;
}
.promise-item:hover .promise-n { opacity: .24; }
.promise-icon {
  width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--blue); margin-bottom: 20px; transition: border-color .3s, background .3s;
}
.promise-item:hover .promise-icon { border-color: var(--blue); background: rgba(26,107,218,.1); }
.promise-item h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 12px; }
.promise-item p { font-size: 14px; color: var(--mute); line-height: 1.75; }
.promise-badge {
  display: inline-block; margin-top: 24px;
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(26,107,218,.3); padding: 5px 12px; border-radius: 2px;
}
.timeline-sec { padding: 100px 0; background: var(--bg2); position: relative; overflow: hidden; }
.timeline-head { text-align: center; margin-bottom: 72px; }
.timeline-head h2 em { font-style: normal; color: var(--blue); }
.tl-wrap { position: relative; padding-bottom: 20px; }
.tl-wrap::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 8%, var(--line) 92%, transparent);
  transform: translateX(-50%);
}
.tl-entry { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: start; margin-bottom: 60px; }
.tl-entry:last-child { margin-bottom: 0; }
.tl-dot-col { display: flex; flex-direction: column; align-items: center; padding-top: 8px; }
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--blue); background: var(--bg2); position: relative; z-index: 2;
  transition: background .3s, transform .3s, box-shadow .3s;
}
.tl-entry:hover .tl-dot {
  background: var(--blue); transform: scale(1.5);
  box-shadow: 0 0 16px rgba(26,107,218,.6);
}
.tl-yr { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-top: 10px; }
.tl-left { text-align: right; padding-right: 32px; }
.tl-right { text-align: left; padding-left: 32px; }
.tl-entry h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.tl-entry p { font-size: 14px; color: var(--mute); line-height: 1.75; max-width: 320px; }
.tl-left p { margin-left: auto; }
.tl-empty { }
.values-sec { padding: 100px 0; background: var(--bg); }
.values-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.values-head .eyebrow { margin-bottom: 12px; }
.values-head h2 em { font-style: normal; color: var(--blue); }
.values-head p { font-size: 16px; color: var(--mute); line-height: 1.75; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.val-item {
  padding: 44px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; transition: background .3s;
}
.val-item:hover { background: var(--bg2); }
.val-item::after {
  content: ''; position: absolute; top: 0; left: 36px; right: 36px;
  height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .4s var(--ease);
}
.val-item:hover::after { transform: scaleX(1); }
.val-n { font-family: var(--fh); font-size: .75rem; font-weight: 700; letter-spacing: .15em; color: var(--blue); margin-bottom: 14px; }
.val-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.val-item p { font-size: 13.5px; color: var(--mute); line-height: 1.7; }
.studios-sec { padding: 100px 0; background: var(--bg2); }
.studios-head { margin-bottom: 56px; }
.studios-head .eyebrow { margin-bottom: 12px; }
.studios-head h2 em { font-style: normal; color: var(--blue); }
.studios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.studio-card {
  border: 1px solid var(--line); padding: 44px 36px;
  position: relative; overflow: hidden; transition: border-color .3s, background .3s;
}
.studio-card:hover { border-color: rgba(26,107,218,.5); background: var(--bg3); }
.studio-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.studio-card:hover::before { transform: scaleX(1); }
.studio-city { font-family: var(--fh); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.studio-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.studio-row i { color: var(--blue); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.studio-row span { font-size: 13.5px; color: var(--mute); line-height: 1.6; }
.studio-row a { color: var(--mute); transition: color .2s; }
.studio-row a:hover { color: var(--white); }
.studio-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 24px;
  font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); transition: gap .2s;
}
.studio-link:hover { gap: 10px; }
.studio-link i { font-size: 10px; }
.awards-sec {
  padding: 80px 0; background: var(--bg);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.awards-sec::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, transparent, var(--blue) 40%, var(--blue) 60%, transparent);
}
.awards-inner {
  display: grid; grid-template-columns: 300px 1fr; gap: 72px; align-items: center;
}
.awards-hd .eyebrow { margin-bottom: 12px; }
.awards-hd h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.awards-hd h2 em { font-style: normal; color: var(--blue); }
.awards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.award-block {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 22px; background: var(--bg2);
  transition: background .3s var(--ease);
}
.award-block:hover { background: var(--bg3); }
.award-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: rgba(26,107,218,.1); border: 1px solid rgba(26,107,218,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--blue);
  transition: background .3s, box-shadow .3s;
}
.award-block:hover .award-icon { background: rgba(26,107,218,.18); box-shadow: 0 0 16px rgba(26,107,218,.3); }
.award-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.award-info span { font-size: 11.5px; color: var(--mute); line-height: 1.5; }
.team-sec { padding: 100px 0; background: var(--bg2); }
.team-inner { display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: start; }
.team-hd .eyebrow { margin-bottom: 12px; }
.team-hd h2 { margin-bottom: 20px; }
.team-hd h2 em { font-style: normal; color: var(--blue); }
.team-hd p { font-size: 15px; color: var(--mute); line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 2px; margin-bottom: 16px;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-member:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,.92) 35%, transparent 72%);
  opacity: 0; transition: opacity .4s var(--ease);
  display: flex; align-items: flex-end; padding: 22px;
}
.team-member:hover .team-overlay { opacity: 1; }
.team-quote {
  font-family: var(--fh); font-size: 13px; font-weight: 500;
  color: var(--white); line-height: 1.6; font-style: italic;
}
.team-info { padding: 0 2px; }
.team-name {
  display: block; font-family: var(--fh); font-size: 1.05rem; font-weight: 600;
  color: var(--white); margin-bottom: 5px;
  position: relative; padding-bottom: 8px;
}
.team-name::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--blue); transition: width .4s var(--ease);
}
.team-member:hover .team-name::after { width: 32px; }
.team-role {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
}
@media (max-width: 1024px) {
  .ph-h1 { font-size: clamp(3.8rem, 12vw, 7rem); }
  .ph-ghost-yr { font-size: clamp(8rem, 22vw, 18rem); opacity: .035; }
  .ph-scroll-cue { display: none; }
  .brand-story-inner { grid-template-columns: 1fr; }
  .bs-ghost { display: none; }
  .tl-wrap::before { left: 20px; transform: none; }
  .tl-entry { grid-template-columns: 48px 1fr; }
  .tl-left { display: block; grid-column: 2; grid-row: 1; text-align: left; padding-left: 24px; padding-right: 0; }
  .tl-left p { max-width: none; margin-left: 0; }
  .tl-entry > .tl-empty:last-child { display: none; }
  .tl-dot-col { grid-column: 1; }
  .tl-right { grid-column: 2; text-align: left; padding-left: 24px; }
  .tl-right p { max-width: none; }
  .values-head { grid-template-columns: 1fr; }
  .awards-inner { grid-template-columns: 1fr; gap: 36px; }
  .awards-row { grid-template-columns: repeat(2, 1fr); }
  .team-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .ph-h1 { font-size: clamp(3.2rem, 15vw, 5rem); letter-spacing: -.02em; }
  .ph-content { padding-bottom: 200px; }
  .ph-ghost-yr { display: none; }
  .ph-corner { width: 22px; height: 22px; }
  .ph-frame { inset: 14px; }
  .ph-bottom-inner { flex-direction: column; }
  .ph-bottom-stats { flex-wrap: wrap; }
  .ph-bstat { flex: 0 0 33.33%; border-bottom: 1px solid rgba(26,107,218,.1); }
  .promises-grid { grid-template-columns: 1fr; }
  .promise-item { border-right: none; border-bottom: 1px solid var(--line); }
  .values-grid { grid-template-columns: 1fr; }
  .studios-grid { grid-template-columns: 1fr; }
  .awards-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

.ab-vtesti { padding: 100px 0; background: var(--bg); }
.ab-vtesti-inner {
  display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: center;
}
.ab-vtesti-text .eyebrow { margin-bottom: 16px; }
.ab-vtesti-text h2 { margin-bottom: 20px; }
.ab-vtesti-text h2 em { font-style: normal; color: var(--blue); }
.ab-vtesti-text p { font-size: 16px; color: var(--mute); line-height: 1.8; margin-bottom: 28px; }
.ab-vtesti-stars { display: flex; gap: 5px; margin-bottom: 20px; }
.ab-vtesti-stars i { color: #f5a623; font-size: 14px; }
.ab-vtesti-wrap { width: 100%; }

@media (max-width: 768px) {
  .ab-vtesti-inner { grid-template-columns: 1fr; }
  .ab-vtesti-wrap { max-width: 280px; margin: 0 auto; }
}
.ab-vtesti-client { display:block; font-size:13px; color:var(--mute); margin-bottom:24px; font-style:italic; }

