/*
Theme Name: Design Lattice
Theme URI: https://designlattice.com
Author: Design Lattice Pvt Ltd
Author URI: https://designlattice.com
Description: A premium architectural planning studio theme featuring hero sliders, portfolio showcases, service cards, and consultation forms.
Version: 1.0.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: design-lattice
Tags: one-column, custom-menu, custom-logo, featured-images, theme-options, translation-ready
*/

/* Typography — chalkstudio.design: body ≈ Inter light; display ≈ Arimo; accents ≈ Space Grotesk */
:root {
  /* Paragraph / intro text (“Chalk Studio is an interior design firm…”) */
  --dl-font-body: "Inter", system-ui, -apple-system, sans-serif;
  --dl-font-grotesk: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --dl-font-display: "Arimo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --dl-text-darkgrey: #242424;
  --dl-text-body: #2d2d2d;
}

/* Chalk Studio–style utilities (e.g. h3.font-havletica.font-light.text-darkGrey.text-center) */
.font-havletica {
  font-family: var(--dl-font-display);
}
.font-light {
  font-weight: 300;
}
.text-darkGrey {
  color: var(--dl-text-darkgrey);
}
.text-center {
  text-align: center;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--dl-font-body);
  font-weight: 400;
  color: var(--dl-text-body);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Header ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  height: 66px;
}

.logo {
  font-family: var(--dl-font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link,
.nav a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-link:hover,
.nav a:hover {
  color: #fff;
}

.btn-get-in-touch {
  font-size: 0.88rem;
  font-weight: 500;
  color: #222;
  background: #fff;
  padding: 9px 24px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}

.btn-get-in-touch:hover {
  background: #f0ede8;
  transform: translateY(-1px);
}

/* ===== Hamburger Toggle (Chalk Studio style — 3 lines) ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 10001;
}

.hamburger-line {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1),
              opacity 0.25s ease;
  transform-origin: center;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ===== Full-screen Mobile Menu Overlay (Chalk Studio) ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

/* Dark top bar */
.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 56px;
  background: #111;
  flex-shrink: 0;
}

.mob-menu-logo {
  font-family: var(--dl-font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

.mob-menu-logo img {
  max-height: 32px;
  width: auto;
}

.mob-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  font-weight: 300;
}

/* Beige body */
.mob-menu-body {
  flex: 1;
  background: #f5f0ea;
  overflow-y: auto;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.mob-menu-nav {
  flex: 1;
}

.mob-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mob-menu-list .menu-item,
.mob-menu-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mob-menu-list .menu-item > a,
.mob-menu-item > a {
  display: block;
  padding: 18px 24px;
  font-family: var(--dl-font-grotesk);
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.mob-menu-list .menu-item > a:hover,
.mob-menu-item > a:hover {
  background: rgba(0,0,0,0.03);
}

/* Accordion parent items with chevron */
.mob-menu-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.mob-menu-toggle-row:hover {
  background: rgba(0,0,0,0.03);
}

.mob-menu-label {
  font-family: var(--dl-font-grotesk);
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.3px;
}

.mob-menu-chevron {
  font-size: 0.7rem;
  color: #555;
  transition: transform 0.3s ease;
}

.mob-has-children.open .mob-menu-chevron {
  transform: rotate(180deg);
}

/* WP menu items with sub-menus */
.mob-menu-list .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mob-menu-list .menu-item-has-children > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: #555;
  transition: transform 0.3s ease;
}

.mob-menu-list .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}

/* Sub-menu items */
.mob-sub-menu,
.mob-menu-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 10px;
  display: none;
}

.mob-has-children.open .mob-sub-menu,
.mob-menu-list .menu-item-has-children.open > .sub-menu {
  display: block;
}

.mob-sub-menu li a,
.mob-menu-list .sub-menu li a {
  display: block;
  padding: 10px 24px 10px 36px;
  font-size: 0.92rem;
  font-weight: 400;
  color: #444;
  transition: color 0.2s;
}

.mob-sub-menu li a:hover,
.mob-menu-list .sub-menu li a:hover {
  color: #111;
}

/* Get In Touch button */
.mob-menu-cta {
  padding: 24px 24px 16px;
  text-align: center;
}

.mob-menu-btn {
  display: inline-block;
  padding: 14px 48px;
  background: #111;
  color: #fff;
  font-family: var(--dl-font-grotesk);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 40px;
  transition: background 0.2s;
}

.mob-menu-btn:hover {
  background: #333;
}

/* Dark bottom bar with social icons */
.mob-menu-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  background: #111;
  flex-shrink: 0;
}

.mob-menu-bottom a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: border-color 0.3s, background 0.3s;
}

.mob-menu-bottom a:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
}

body.menu-open {
  overflow: hidden;
}

/* ===== Hero Slider ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-family: var(--dl-font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-subtitle {
  font-family: var(--dl-font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-location {
  position: absolute;
  bottom: 30px;
  left: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  z-index: 2;
}

.hero-category {
  position: absolute;
  bottom: 30px;
  right: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  z-index: 2;
}

.hero-progress {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 2;
}

.progress-line {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.progress-line.active {
  width: 60px;
  background: #fff;
}

/* ===== Description ===== */
.description {
  text-align: center;
  padding: 60px 40px 50px;
  max-width: 850px;
  margin: 0 auto;
}

.description p {
  font-family: var(--dl-font-body);
  font-size: 1.35rem;
  line-height: 1.8;
  color: #3a3a3a;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.description p strong {
  color: #333;
  font-weight: 600;
}

.explore-btn {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 500;
  color: #222;
  border-bottom: 1px solid #222;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.explore-btn:hover {
  color: #888;
  border-color: #888;
}

/* ===== Press / Services ===== */
.press-section {
  padding: 50px 50px 40px;
  border-top: 1px solid #e8e8e8;
}

.press-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.press-header h3 {
  font-family: var(--dl-font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}

.press-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.press-nav-label {
  font-size: 0.82rem;
  color: #999;
  margin-right: 8px;
}

.press-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #666;
  transition: border-color 0.2s, color 0.2s;
}

.press-arrow:hover {
  border-color: #999;
  color: #333;
}

.press-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.press-cards::-webkit-scrollbar {
  display: none;
}

.press-card {
  min-width: calc(25% - 15px);
  max-width: calc(25% - 15px);
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}

.press-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.press-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.press-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.press-card-tag {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
}

.press-card-content {
  padding: 16px;
}

.press-source {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 6px;
  font-weight: 500;
}

.press-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
}

.press-dots-container {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.press-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}

.press-dot.active {
  background: #888;
}

/* ===== Clients Section ===== */
.clients-section {
  padding: 60px 50px;
  text-align: center;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.clients-section h2 {
  font-family: var(--dl-font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.client-logo:hover {
  opacity: 1;
}

.client-text-logo {
  font-family: var(--dl-font-grotesk);
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.3;
}

.vatika-logo {
  font-family: var(--dl-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: #2c5f2d;
}

.jps-logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: #c0392b;
}

/* ===== Chalk TV / Works ===== */
.chalk-tv-section {
  padding: 50px 50px;
  background: #f9f9f9;
}

.chalk-tv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.chalk-tv-header h2 {
  font-family: var(--dl-font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: #333;
}

.chalk-tv-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chalk-tv-label {
  font-size: 0.82rem;
  color: #999;
  margin-right: 8px;
}

.chalk-tv-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #666;
  transition: border-color 0.2s, color 0.2s;
}

.chalk-tv-arrow:hover {
  border-color: #999;
  color: #333;
}

.chalk-tv-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chalk-tv-cards::-webkit-scrollbar {
  display: none;
}

/* ===== Work Cards (Portfolio) ===== */
.work-card {
  min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.work-card-image {
  height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.4s;
}

.work-card:hover .work-card-image {
  transform: scale(1.03);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s;
}

.work-card:hover .work-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.work-card-title {
  font-family: var(--dl-font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
}

.work-card-category {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== TV Cards (Instagram Style) ===== */
.tv-card {
  min-width: calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  flex-shrink: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.tv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}

.tv-card-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.profile-name {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.profile-handle {
  font-size: 0.72rem;
  color: #999;
  display: block;
}

.follow-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: #0095f6;
  border: none;
  padding: 6px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.follow-btn:hover {
  background: #0081d6;
}

.tv-card-image {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-overlay {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.play-overlay:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.05);
}

.tv-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  line-height: 1.4;
}

.tv-card-footer {
  padding: 10px 12px;
}

.tv-link {
  font-size: 0.75rem;
  color: #0095f6;
  display: block;
  margin-bottom: 8px;
}

.tv-actions {
  display: flex;
  gap: 14px;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 6px;
}

.tv-bookmark {
  margin-left: auto;
}

.tv-meta {
  margin-bottom: 6px;
}

.tv-likes {
  font-size: 0.82rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.tv-caption {
  font-size: 0.8rem;
  color: #777;
}

.tv-social-icons {
  text-align: right;
  padding-top: 4px;
  border-top: 1px solid #f0f0f0;
  margin-top: 6px;
}

.tv-social-icons i {
  font-size: 0.85rem;
  color: #999;
}

/* ===== Design Process ===== */
.process-subtitle {
  font-family: var(--dl-font-display);
  font-size: 1.15rem;
  color: #777;
  margin-bottom: 40px;
  font-weight: 400;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.process-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f5f0ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #555;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.process-step:hover .process-icon {
  background: #333;
  color: #fff;
  transform: translateY(-4px);
}

.process-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: #444;
  text-align: center;
  letter-spacing: 0.3px;
}

/* ===== Mission & Vision ===== */
.mission-section {
  padding: 70px 50px;
  background: #f5f0ea;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.mission-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 10px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.mission-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.mission-icon {
  font-size: 2rem;
  color: #555;
  margin-bottom: 18px;
}

.mission-card h3 {
  font-family: var(--dl-font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

/* ===== Consultation Section ===== */
.consultation-section {
  padding: 70px 50px;
  text-align: center;
  border-top: 1px solid #e8e8e8;
}

.consultation-section h2 {
  font-family: var(--dl-font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 12px;
}

.consultation-subtitle {
  font-size: 1rem;
  color: #777;
  margin-bottom: 32px;
}

.consultation-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.consultation-select {
  padding: 12px 20px;
  font-size: 0.92rem;
  font-family: var(--dl-font-grotesk);
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #444;
  min-width: 220px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.consultation-select:focus {
  outline: none;
  border-color: #999;
}

.consultation-btn {
  padding: 12px 32px;
  font-size: 0.92rem;
  font-family: var(--dl-font-grotesk);
  font-weight: 500;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}

.consultation-btn:hover {
  background: #555;
  transform: translateY(-1px);
}

/* ===== Footer ===== */
.footer {
  background: #f5f0ea;
  padding: 60px 50px 30px;
  position: relative;
  overflow: hidden;
}

.footer-big-text {
  font-family: var(--dl-font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(0,0,0,0.06);
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a,
.footer-menu a {
  font-size: 0.82rem;
  color: #666;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-menu a:hover {
  color: #222;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  list-style: none;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #aaa;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: #555;
  transform: translateY(-2px);
}

.footer-right-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: #666;
}

.footer-right-links a {
  color: #666;
  transition: color 0.2s;
}

.footer-right-links a:hover {
  color: #222;
}

/* ===== Chat Widget ===== */
.chat-widget-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
}

.chat-label {
  background: #fff;
  color: #333;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
  transition: opacity 0.3s;
}

.chat-label.hidden {
  opacity: 0;
  pointer-events: none;
}

.chat-widget {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.chat-widget:hover {
  background: #555;
  transform: scale(1.05);
}

/* ===== WordPress Content Styles ===== */
.entry-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 60px 40px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--dl-font-display);
  color: #333;
  margin-bottom: 16px;
}

.entry-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-header {
  padding: 140px 50px 60px;
  text-align: center;
  background: #333;
}

.page-header h1 {
  font-family: var(--dl-font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 4px;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  margin-bottom: 30px;
}

.post-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.post-card-body {
  padding: 24px;
}

.post-card-body h2 {
  font-family: var(--dl-font-display);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.post-card-body h2 a {
  color: #333;
  transition: color 0.2s;
}

.post-card-body h2 a:hover {
  color: #888;
}

.post-meta {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 12px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 50px;
}

/* 404 Page */
.error-404 {
  text-align: center;
  padding: 140px 40px 80px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-404 h1 {
  font-family: var(--dl-font-display);
  font-size: 8rem;
  font-weight: 300;
  color: #ddd;
  line-height: 1;
}

.error-404 h2 {
  font-family: var(--dl-font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #333;
  margin: 20px 0 12px;
}

.error-404 p {
  color: #777;
  margin-bottom: 30px;
}

.error-404 a {
  display: inline-block;
  padding: 12px 32px;
  background: #333;
  color: #fff;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s;
}

.error-404 a:hover {
  background: #555;
}

/* ===== Responsive — Tablet (max-width: 900px) ===== */
@media (max-width: 900px) {
  .nav-desktop {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }

  .header {
    border-bottom: none;
  }

  .header-inner {
    padding: 0 24px;
    height: 60px;
  }

  .logo {
    font-size: 1.3rem;
    z-index: 10001;
  }

  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    letter-spacing: 4px;
    white-space: normal;
    max-width: 90vw;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

  .hero-content {
    bottom: 100px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .hero-arrow-left {
    left: 16px;
  }

  .hero-arrow-right {
    right: 16px;
  }

  .hero-location {
    left: 24px;
    bottom: 24px;
    font-size: 0.72rem;
  }

  .hero-category {
    right: 24px;
    bottom: 24px;
    font-size: 0.72rem;
  }

  .hero-progress {
    bottom: 24px;
  }

  .description {
    padding: 50px 24px;
  }

  .description p {
    font-size: 1.15rem;
    line-height: 1.9;
  }

  .press-section,
  .chalk-tv-section {
    padding: 40px 24px;
  }

  .press-header,
  .chalk-tv-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .press-card {
    min-width: 260px;
    max-width: 260px;
  }

  .work-card {
    min-width: 280px;
    max-width: 280px;
  }

  .work-card-image {
    height: 320px;
  }

  .tv-card {
    min-width: 300px;
    max-width: 300px;
  }

  .clients-section {
    padding: 50px 24px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-section {
    padding: 50px 24px;
  }

  .mission-card {
    padding: 30px 24px;
  }

  .consultation-section {
    padding: 50px 24px;
  }

  .footer {
    padding: 40px 24px 24px;
  }

  .footer-big-text {
    font-size: clamp(3rem, 14vw, 6rem);
    margin-bottom: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links,
  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-right-links {
    justify-content: center;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .page-header {
    padding: 100px 24px 40px;
  }

  .page-header h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .entry-content {
    padding: 40px 24px;
  }
}

/* ===== Responsive — Mobile (max-width: 600px) ===== */
@media (max-width: 600px) {
  .header-inner {
    padding: 0 20px;
    height: 56px;
  }

  .logo {
    font-size: 1.15rem;
  }

  .hero {
    height: 100vh;
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(1.3rem, 5.5vw, 2rem);
    letter-spacing: 3px;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .hero-content {
    bottom: 80px;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-arrow {
    display: none;
  }

  .hero-location,
  .hero-category {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }

  .hero-location {
    left: 20px;
    bottom: 20px;
  }

  .hero-category {
    right: 20px;
    bottom: 20px;
  }

  .hero-progress {
    bottom: 20px;
  }

  .progress-line {
    width: 20px;
  }

  .progress-line.active {
    width: 40px;
  }

  .description {
    padding: 40px 20px;
  }

  .description p {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .explore-btn {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .press-section,
  .chalk-tv-section {
    padding: 32px 20px;
  }

  .press-header h3,
  .chalk-tv-header h2 {
    font-size: 1.2rem;
  }

  .press-nav-label,
  .chalk-tv-label {
    display: none;
  }

  .press-card {
    min-width: 220px;
    max-width: 220px;
  }

  .press-card-image {
    height: 180px;
  }

  .press-card-tag {
    font-size: 0.95rem;
  }

  .work-card {
    min-width: 75vw;
    max-width: 75vw;
  }

  .work-card-image {
    height: 280px;
  }

  .work-card-title {
    font-size: 1.15rem;
  }

  .tv-card {
    min-width: 80vw;
    max-width: 80vw;
  }

  .tv-card-image {
    height: 240px;
  }

  .clients-section {
    padding: 40px 20px;
  }

  .clients-section h2 {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .process-label {
    font-size: 0.82rem;
  }

  .mission-section {
    padding: 40px 20px;
  }

  .mission-card {
    padding: 28px 20px;
  }

  .mission-card h3 {
    font-size: 1.3rem;
  }

  .consultation-section {
    padding: 40px 20px;
  }

  .consultation-section h2 {
    font-size: 1.5rem;
  }

  .consultation-subtitle {
    font-size: 0.88rem;
  }

  .consultation-form {
    flex-direction: column;
  }

  .consultation-select,
  .consultation-btn {
    width: 100%;
  }

  .footer {
    padding: 32px 20px 20px;
  }

  .footer-big-text {
    font-size: clamp(2.5rem, 16vw, 5rem);
  }

  .footer-links,
  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-copyright {
    font-size: 0.68rem;
    display: block;
    margin-top: 8px;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .footer-right-links {
    font-size: 0.75rem;
    gap: 12px;
  }

  .chat-widget-wrap {
    bottom: 16px;
    right: 16px;
  }

  .chat-widget {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .chat-label {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

}
