/* =============================================
   LOFT CONCEPT — Interior + Architecture
   Fonts: Barlow (400, 600, 700, 800)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ruluko&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #EAE5DC;
  --orange:   #E8731A;
  --dark:     #1C1C1C;
  --body:     #333333;
  --muted:    #888888;
  --white:    #FFFFFF;
  --font:     'Barlow', sans-serif;
  --radius-btn:  50px;
  --radius-card: 16px;
  --max-w:    1280px;
  --px:       80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--px);
  background: transparent;
  transition: background 0.3s;
}

/* Non-hero pages: show cream bg immediately */
.navbar.solid { background: var(--cream); }
.navbar.scrolled { background: rgba(234,229,220,0.97); backdrop-filter: blur(6px); }

.nav-logo img { height: 50px; width: auto; }

/* Pill is absolutely centered in the navbar */
.nav-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border-radius: var(--radius-btn);
  padding: 8px 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.nav-pill a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 4px 14px;
  border-radius: 50px;
  transition: color 0.2s;
}

.nav-pill a:hover, .nav-pill a.active { color: var(--orange); }

.btn-booknow {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-booknow:hover { opacity: 0.88; transform: scale(1.02); }

/* hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--orange); }
.mobile-nav .mobile-close {
  position: absolute;
  top: 22px; right: var(--px);
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover { opacity: 0.88; transform: scale(1.02); }

.btn-primary { background: var(--orange); color: var(--white); }
.btn-outline  {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

/* ===== HERO ===== */
.hero {
  padding-top: 100px;
  background: var(--cream);
}

.hero-video-wrap {
  position: relative;
  width: 100%;
}

.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.50) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--px);
}

.hero-content h1 {
  font-family: 'Ruluko', sans-serif;
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.hero-btn-mobile { display: none; }

/* ===== SECTION GENERIC ===== */
section { padding: 100px 0; }

.section-heading {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.section-heading-orange {
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.05;
  text-align: center;
}

.section-subheading {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 48px;
}

/* ===== INTRO TEXT SECTION ===== */
.intro-section { padding: 80px 0; }

.intro-section p {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  color: var(--body);
  max-width: 900px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ===== EXPLORE INTERIORS (2-card) ===== */
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.explore-card {
  display: block;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.explore-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.explore-card video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.explore-card:hover img,
.explore-card:hover video { transform: scale(1.03); }

.explore-card-label {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 14px;
}

.explore-cta { text-align: center; }

/* ===== OUR APPROACH TIMELINE ===== */
.approach-section { padding: 100px 0; }

.approach-section h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--dark);
}

.timeline-item {
  position: relative;
  display: flex;
  margin-bottom: 60px;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  text-align: left;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-content {
  width: calc(50% - 40px);
  padding: 0 0 0 0;
}

.timeline-item:nth-child(odd) .timeline-content  { margin-right: auto; padding-right: 40px; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto;  padding-left: 40px; }

.timeline-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== CLIENTS / YOUTUBE SECTION ===== */
.clients-section { padding: 100px 0; }

.clients-section h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}

.clients-section .clients-sub {
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.video-grid { display: flex; flex-direction: column; gap: 64px; }

.video-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.video-item:nth-child(even) { direction: rtl; }
.video-item:nth-child(even) > * { direction: ltr; }

.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-info h3 {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.video-info p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.7;
}

/* ===== ABOUT / TEAM SNIPPET ===== */
.about-snippet {
  padding: 60px 0 100px;
}

.about-snippet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.about-snippet-grid img {
  border-radius: var(--radius-card);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.about-snippet-text {
  max-width: 680px;
  font-size: 17px;
  color: var(--body);
  line-height: 1.7;
}

/* ===== ACCREDITATIONS ===== */
.accreditations {
  padding: 40px 0 80px;
}

.accreditations h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.accred-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.accred-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.2s, opacity 0.2s;
}

.accred-logos img:hover { filter: none; opacity: 1; }

/* ===== CTA ORANGE BANNER ===== */
.cta-banner {
  background: var(--orange);
  padding: 80px var(--px);
}

.cta-banner h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--white);
  margin-bottom: 36px;
}

.cta-banner .cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: var(--cream);
  padding: 60px var(--px) 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
}

.footer-brand img { height: 70px; width: auto; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 16px; align-items: center; }

.footer-socials a {
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: opacity 0.2s;
}
.footer-socials a:hover { opacity: 0.75; }
.footer-socials svg { width: 20px; height: 20px; fill: var(--white); }

.footer-nav { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }

.footer-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
}

.footer-contact-item svg { width: 18px; height: 18px; fill: var(--dark); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

/* Huge watermark text */
.footer-watermark {
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 800;
  color: var(--dark);
  line-height: 0.9;
  overflow: hidden;
  margin-top: 20px;
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float a {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s;
}

.whatsapp-float a:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

.whatsapp-label {
  background: var(--white);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  white-space: nowrap;
}

/* ===== PORTFOLIO / THEMES GRID ===== */
.page-title {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  color: var(--orange);
  text-align: center;
  padding: 60px 0 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.card {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
}

video.card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-img { transform: scale(1.03); }

.card-body { padding: 16px 4px; }

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.card-link:hover { opacity: 0.75; }

/* ===== PRESS PAGE ===== */
.press-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.press-featured {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: 32px;
}

.press-featured h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  text-align: center;
}

.press-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press-desc {
  font-size: 14px;
  color: var(--body);
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

.press-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.press-img-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.press-side { display: flex; flex-direction: column; gap: 20px; }

.press-side-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.press-side-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.press-side-card .press-card-body {
  padding: 16px;
}

.press-side-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* ===== PAGE HERO (non-home pages) ===== */
.page-hero {
  padding: 140px var(--px) 80px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  max-width: 860px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 17px;
  color: var(--body);
  max-width: 620px;
  line-height: 1.7;
}

/* ===== ABOUT LARGE QUOTE ===== */
.about-quote {
  padding: 80px var(--px);
}

.about-quote p {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
  max-width: 800px;
}

.about-team-img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  max-height: 560px;
}

/* ===== CONTACT / CAREERS FORM ===== */
.form-page {
  padding: 140px var(--px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-page h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-page .form-subtitle {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  background: var(--cream);
  color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 120px;
  padding: 14px 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-group { margin-bottom: 0; }

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: var(--font);
  transition: opacity 0.2s;
  margin-top: 8px;
}

.btn-submit:hover { opacity: 0.88; }

.form-side-img {
  border-radius: var(--radius-card);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  position: sticky;
  top: 100px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 140px var(--px) 80px;
}

.testimonials-section h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.testimonials-section .test-sub {
  font-size: 16px;
  color: var(--body);
  max-width: 620px;
  margin-bottom: 64px;
  line-height: 1.7;
}

/* ===== REVIEW CARDS ===== */
.reviews-section {
  padding: 0 var(--px) 100px;
  background: var(--cream);
}

.reviews-section h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.review-stars span {
  color: #E8731A;
  font-size: 18px;
}

.review-quote {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  flex: 1;
}

.review-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.review-author span {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
  display: block;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section { padding: 0 var(--px) 60px; }
}

/* ===== SCROLL FADE ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE — Tablet (≤768px) ===== */
@media (max-width: 768px) {
  :root { --px: 24px; }

  .hero { padding-bottom: 50px; }
  .intro-section { padding: 40px 0; }

  .page-hero { padding-bottom: 40px; }
  .about-img-section { padding-bottom: 40px !important; }
  .about-quote { padding-top: 40px; padding-bottom: 40px; }

  .nav-pill { display: none; }
  .btn-booknow.desktop-only { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: clamp(20px, 4vw, 32px); }
  .hero-btn-mobile { display: block; margin-top: 24px; }

  .explore-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 24px; transform: none; }
  .timeline-item { flex-direction: row !important; text-align: left !important; align-items: flex-start; }
  .timeline-num { position: relative; left: auto; transform: none; flex-shrink: 0; margin-right: 20px; margin-bottom: 0; }
  .timeline-content { width: auto; flex: 1; padding: 0 !important; padding-top: 10px !important; }
  .timeline-item:nth-child(even) .timeline-content { margin-left: 0; }

  .video-item { grid-template-columns: 1fr; direction: ltr !important; }

  .about-snippet-grid { grid-template-columns: repeat(2, 1fr); }

  .card-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .form-page { grid-template-columns: 1fr; gap: 40px; padding-top: 120px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 20px; }
  .form-side-img { display: none; }

  .press-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px var(--px); }
  .cta-banner .cta-btns { flex-direction: column; }

  .testimonials-section { padding: 120px var(--px) 60px; }
}

/* ===== RESPONSIVE — Mobile (≤480px) ===== */
@media (max-width: 480px) {
  :root { --px: 18px; }

  .card-grid { grid-template-columns: 1fr; }
  .about-snippet-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-content h1 { font-size: clamp(18px, 5.5vw, 26px); }
  .hero-content { padding: 24px var(--px); }

  .intro-section p { font-size: 16px; }

  .video-item { gap: 24px; }

  footer { padding: 40px var(--px) 24px; }
  .footer-watermark { font-size: clamp(48px, 14vw, 80px); }
}

/* ===== PROJECT DETAIL PAGES ===== */
.project-hero-img {
  width: 100%;
  height: 60vh;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.project-header {
  padding: 48px 0 40px;
}

.project-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.project-back:hover { opacity: 0.75; }

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

.project-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
}

.project-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.project-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

.project-desc {
  font-size: 17px;
  color: #555;
  max-width: 680px;
  line-height: 1.8;
  margin-top: 16px;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: 100px;
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

@media (max-width: 768px) {
  .project-hero-img { height: 45vw; min-height: 240px; }
}
