/* ==========================================================================
   UFORIA Creative Agency & Visual Studio — Refined Stylesheet
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color Palette */
  --bg-dark: #0e0f12;
  --bg-dark-elevated: #15161c;
  --bg-dark-card: #181920;
  --bg-dark-border: rgba(255, 255, 255, 0.08);
  --bg-dark-border-hover: rgba(197, 160, 124, 0.45);

  --bg-cream: #f8f6f0;
  --bg-cream-card: #ffffff;
  --bg-cream-surface: #ede7dc;
  --bg-cream-alt: #f3efe6;
  --border-cream: rgba(0, 0, 0, 0.06);

  --gold: #c5a07c;
  --gold-light: #dfbe9f;
  --gold-dark: #8c6340;
  --bronze: #a37854;
  --bronze-dark: #63432b;
  --gold-gradient: linear-gradient(135deg, #dfbe9f 0%, #c5a07c 50%, #9c7550 100%);
  --gold-subtle: rgba(197, 160, 124, 0.12);

  --text-dark-main: #1c1b18;
  --text-dark-muted: #66635c;
  --text-dark-subtle: #8a8780;

  --text-light-main: #f5f4ef;
  --text-light-muted: #a1a0a8;
  --text-light-subtle: #6e6d75;

  --transition-fast: 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 10px 30px rgba(197, 160, 124, 0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-dark-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* --- Shared Typography & Headings --- */
.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}

.kicker-dark {
  color: var(--bronze);
}

.kicker-gold {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.2vw, 3.5rem);
  font-weight: 600;
  line-height: 1.14;
  color: var(--text-dark-main);
  letter-spacing: -0.01em;
}

.text-light {
  color: var(--text-light-main);
}

.text-accent-gold {
  color: var(--gold-light);
  font-style: italic;
  font-family: var(--font-serif);
}

/* --- Button Styles --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-talk {
  background: #6e4e33;
  color: #ffffff;
  font-size: 0.74rem;
  padding: 9px 22px;
  border-radius: 4px;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-talk:hover {
  background: #8b6443;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(110, 78, 51, 0.35);
  transform: translateY(-1px);
}

.btn-hero-dark {
  background: #63432b;
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  box-shadow: 0 6px 18px rgba(99, 67, 43, 0.25);
}

.btn-hero-dark:hover {
  background: #472f1e;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(71, 47, 30, 0.35);
}

.btn-outline-gold {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid var(--gold);
  padding: 12px 28px;
  font-size: 0.78rem;
  border-radius: 4px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-submit {
  align-self: center;
  padding: 14px 40px;
  background: var(--gold-gradient);
  color: #1a1815;
  font-weight: 700;
  border-radius: 4px;
}

.btn-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--transition-medium);
  background: transparent;
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(248, 246, 240, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Cream Colour Strip for Menu Section in Inner Pages */
body.inner-page .site-header,
.site-header.header-cream {
  background: rgba(248, 246, 240, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

body.inner-page .site-header.scrolled,
.site-header.header-cream.scrolled {
  background: rgba(248, 246, 240, 0.99);
  padding: 14px 0;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo .logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

.footer-logo .logo-img {
  height: 52px;
  width: auto;
  max-width: 175px;
  display: block;
}

.mobile-logo .logo-img {
  height: 40px;
  width: auto;
  max-width: 140px;
  display: block;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-dark-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--bronze);
  transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav Dropdown Menu */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 190px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  list-style: none;
  pointer-events: none;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
  pointer-events: auto;
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2b2723;
  text-decoration: none;
  transition: all 0.18s ease;
}

.nav-dropdown-link:hover {
  background: #fbf5ef;
  color: #c4682c;
  padding-left: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  padding: 0;
  z-index: 1002;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #1c1b18;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  transition: visibility var(--transition-medium);
}

.mobile-drawer.open {
  visibility: visible;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.mobile-drawer.open .drawer-overlay {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: #101114;
  color: var(--text-light-main);
  padding: 26px 22px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform var(--transition-medium);
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.55);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
}

.mobile-logo .logo-img {
  height: 38px;
  width: auto;
  max-width: 135px;
  display: block;
}

.drawer-close-btn {
  font-size: 1.7rem;
  color: #948d83;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.drawer-close-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Nav Items with Icons & Right Chevrons */
.drawer-nav-list {
  list-style: none;
  margin: 12px 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.drawer-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 4px;
  text-decoration: none;
  color: #d2ccc3;
  transition: all 0.22s ease;
}

.drawer-link-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.drawer-icon {
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
  color: #9e978d;
  transition: color 0.22s ease;
}

.drawer-link-title {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #eae5dc;
  transition: color 0.22s ease;
}

.drawer-chevron {
  font-size: 0.8rem;
  color: #635d55;
  transition: color 0.22s ease, transform 0.22s ease;
}

/* Active State (like HOME in mockup) */
.drawer-nav-link.active .drawer-icon,
.drawer-nav-link.active .drawer-link-title,
.drawer-nav-link.active .drawer-chevron {
  color: #c98a58;
}

.drawer-nav-link:hover .drawer-icon,
.drawer-nav-link:hover .drawer-link-title,
.drawer-nav-link:hover .drawer-chevron {
  color: #d9955b;
}

.drawer-nav-link:hover .drawer-chevron {
  transform: translateX(3px);
}

/* Bottom Section */
.drawer-bottom-section {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Prominent Brown Booking Button */
.drawer-booking-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #6c4224, #533219);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-btn-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-icon {
  font-size: 1.25rem;
  color: #f7eee1;
}

.booking-btn-text {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.booking-chevron {
  font-size: 0.85rem;
  color: #ecd8c3;
  transition: transform 0.22s ease;
}

.drawer-booking-btn:hover {
  background: linear-gradient(135deg, #7d4d2b, #623c1e);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.drawer-booking-btn:hover .booking-chevron {
  transform: translateX(3px);
}

/* Social Row at bottom */
.drawer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 4px 0 6px;
}

.drawer-social-link {
  color: #c5a07c;
  font-size: 1.25rem;
  transition: all 0.22s ease;
  text-decoration: none;
}

.drawer-social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION (SMOOTH MULTI-IMAGE SLIDER)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 90px;
  background-color: #f7f4ee;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.4s;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-slide-img {
  transform: scale(1.05);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(247, 244, 238, 0.98) 0%, rgba(247, 244, 238, 0.92) 42%, rgba(247, 244, 238, 0.28) 72%, rgba(247, 244, 238, 0) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 580px;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--bronze);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.8vw, 4.9rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--text-dark-main);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title-italic {
  font-style: italic;
  font-weight: 400;
  color: #9d7350;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-dark-main);
  transition: gap var(--transition-fast);
}

.hero-link .arrow-line {
  display: inline-block;
  width: 42px;
  height: 1.5px;
  background-color: var(--bronze);
  transition: width var(--transition-medium);
}

.hero-link:hover {
  color: var(--bronze);
}

.hero-link:hover .arrow-line {
  width: 58px;
}

/* Hero Slider Controls & Dots (Hidden) */
.hero-slider-controls {
  display: none !important;
}

.hero-nav-btn {
  color: var(--text-dark-main);
  font-size: 0.75rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  opacity: 0.75;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hero-nav-btn:hover {
  opacity: 1;
  color: var(--bronze-dark);
  background: rgba(0, 0, 0, 0.06);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
  padding: 0;
  border: none;
  cursor: pointer;
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--bronze-dark);
}

/* ==========================================================================
   SERVICES SECTION ("WHAT WE DO")
   ========================================================================== */
.services-section {
  background-color: #0c0d10;
  padding: 100px 0;
  position: relative;
  color: var(--text-light-main);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.services-header-left {
  max-width: 520px;
}

.services-header-right {
  max-width: 440px;
}

.services-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-col {
  background: #131418;
  border: 1px solid var(--bg-dark-border);
  padding: 34px 18px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
}

.service-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-medium);
}

.service-col:hover {
  background: #191a22;
  border-color: var(--bg-dark-border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.service-col:hover::after {
  width: 60%;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
  transition: transform var(--transition-fast);
}

.service-col:hover .service-icon-box {
  transform: scale(1.12);
}

.service-icon {
  width: 32px;
  height: 32px;
}

.service-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-light-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-text {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* ==========================================================================
   PORTFOLIO SECTION ("OUR WORK")
   ========================================================================== */
.portfolio-section {
  padding: 100px 0;
  background-color: var(--bg-cream);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.portfolio-filter {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 10px;
}

.filter-item {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-dark-muted);
  cursor: pointer;
  position: relative;
  padding-bottom: 10px;
  transition: color var(--transition-fast);
}

.filter-item::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--bronze);
  transition: width var(--transition-medium);
}

.filter-item:hover,
.filter-item.active {
  color: var(--text-dark-main);
}

.filter-item.active::after {
  width: 100%;
}

/* Responsive Auto-Flow Portfolio Gallery Grid */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.portfolio-item {
  position: relative;
  width: 100%;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.portfolio-item.hidden {
  display: none !important;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #dfd7cb;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  height: 100%;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.featured-video-card .portfolio-img {
  aspect-ratio: 16 / 13;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 15, 18, 0.15) 0%, rgba(14, 15, 18, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.portfolio-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
}

.portfolio-zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.portfolio-zoom-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* Featured Center Video Card ("WILD NATURE") */
.featured-video-card {
  position: relative;
}

.video-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
  padding: 20px;
}

.video-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.92;
}

.video-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}

.play-btn-pulse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  padding-left: 3px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse-ring 2s infinite;
  transition: all var(--transition-fast);
}

.play-btn-pulse:hover {
  background: var(--gold);
  color: #ffffff;
  transform: scale(1.1);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ==========================================================================
   BANNER / SPOTLIGHT SECTION
   ========================================================================== */
.banner-section {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  color: #ffffff;
  overflow: hidden;
  background-color: #0c0e12;
}

.banner-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.78) contrast(1.12);
  opacity: 0.96;
}

.banner-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 10, 14, 0.95) 0%, rgba(8, 10, 14, 0.72) 40%, rgba(8, 10, 14, 0.15) 75%, rgba(8, 10, 14, 0.45) 100%);
  pointer-events: none;
}

.banner-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.banner-content {
  max-width: 540px;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}

.banner-text {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.7;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.banner-video-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: color var(--transition-fast);
}

.circle-play-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding-left: 2px;
  transition: all var(--transition-fast);
}

.banner-video-link:hover {
  color: var(--gold-light);
}

.banner-video-link:hover .circle-play-icon {
  background: var(--gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

/* ==========================================================================
   STATS & IMPACT SECTION
   ========================================================================== */
.stats-section {
  padding: 60px 0;
  background-color: var(--bg-cream-surface);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.stats-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.stats-monogram-svg {
  width: 54px;
  height: 60px;
}

.stats-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--text-dark-main);
}

.stats-tagline span {
  font-style: italic;
  color: var(--bronze);
}

.stats-metrics {
  display: flex;
  align-items: center;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number-wrap {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark-main);
  margin-bottom: 6px;
}

.stat-plus {
  color: var(--bronze);
  font-size: 2rem;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-dark-muted);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   TESTIMONIALS SECTION ("KIND WORDS")
   ========================================================================== */
.testimonial-section {
  padding: 90px 0;
  background-color: var(--bg-cream);
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 60px;
}

.testimonial-content {
  position: relative;
  background: #ffffff;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-cream);
}

.quote-symbol {
  margin-bottom: 18px;
}

.testimonial-slider {
  position: relative;
  min-height: 135px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition-medium);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text-dark-main);
  font-style: italic;
  margin-bottom: 22px;
}

.author-name {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-dark-main);
  text-transform: uppercase;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.testimonial-controls {
  position: absolute;
  bottom: 44px;
  right: 48px;
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: var(--text-dark-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  border-color: var(--bronze);
  background: var(--bronze);
  color: #ffffff;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-cta-section {
  padding: 50px 0 90px;
  background-color: var(--bg-cream);
}

.contact-cta-card {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 55px 40px;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-cta-text {
  font-size: 1rem;
  color: var(--text-light-muted);
  max-width: 500px;
  margin: 0 auto 34px;
}

.contact-quick-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--bg-dark-elevated);
}

.form-textarea {
  grid-column: span 2;
  resize: vertical;
}

.form-status {
  font-size: 0.88rem;
  color: var(--gold-light);
  min-height: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: #0c0d10;
  color: var(--text-light-muted);
  padding-top: 80px;
  border-top: 1px solid var(--bg-dark-border);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 1.6fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo .logo-text {
  color: #ffffff;
}

.footer-bio {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bg-dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light-muted);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-contact-list i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-thumbnail-box {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(197, 160, 124, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), 0 0 14px rgba(197, 160, 124, 0.18);
  transition: all var(--transition-medium);
  background-color: #08090c;
}

.footer-thumbnail-box:hover {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7), 0 0 20px rgba(197, 160, 124, 0.4);
}

.footer-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--bg-dark-border);
  padding: 24px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.footer-powered {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.footer-powered a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-powered a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-sep {
  color: var(--bg-dark-border);
}

/* ==========================================================================
   LIGHTBOX & VIDEO MODALS
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-medium);
  padding: 20px;
}

.lightbox-modal.open {
  visibility: visible;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--bg-dark-border);
  transform: scale(0.92);
  transition: transform var(--transition-medium);
}

.lightbox-modal.open .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2rem;
  color: #ffffff;
  z-index: 10;
  line-height: 1;
}

.lightbox-img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #000000;
}

.lightbox-info {
  padding: 20px 24px;
  color: #ffffff;
}

.lightbox-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.lightbox-info p {
  font-size: 0.85rem;
  color: var(--gold);
}

.video-player-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000000;
}

.video-player-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (ALWAYS FULLY VISIBLE & ACCESSIBLE)
   ========================================================================== */
.reveal-fade-up,
.reveal-fade-in,
.reveal-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.reveal-fade-up.active,
.reveal-fade-in.active,
.reveal-card.active {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablets & Medium Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    background-position: 70% center;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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


  .stats-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-brand {
    flex-direction: column;
    justify-content: center;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banner-container {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding-top: 120px;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(247, 244, 238, 0.96) 0%, rgba(247, 244, 238, 0.88) 55%, rgba(247, 244, 238, 0.96) 100%);
  }

  .hero-slider-controls {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    padding: 6px 14px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .portfolio-filter {
    flex-wrap: wrap;
    gap: 16px;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }


  .banner-section {
    padding: 70px 0;
  }

  .banner-gradient-overlay {
    background: linear-gradient(180deg, rgba(12, 14, 18, 0.95) 0%, rgba(12, 14, 18, 0.82) 50%, rgba(12, 14, 18, 0.95) 100%);
  }

  .stats-metrics {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .testimonial-content {
    padding: 30px 24px 70px;
  }

  .testimonial-controls {
    bottom: 24px;
    right: 24px;
  }

  .contact-cta-card {
    padding: 36px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-textarea {
    grid-column: span 1;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .btn {
    width: 100%;
  }

  .btn-talk {
    display: none;
  }
}

/* ==========================================================================
   SERVICES PAGE DESIGN SYSTEM (EXACT MATCH FOR DESIGN MOCKUP)
   ========================================================================== */

/* Services Hero Section */
.services-hero-section {
  position: relative;
  min-height: 560px;
  padding: 180px 0 110px;
  background: url('../assets/images/services_hero_bg.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-dark-border);
  display: flex;
  align-items: center;
}

.services-hero-section {
  position: relative;
  background-color: #0b0c0e;
  padding: 140px 0 80px;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(154, 112, 79, 0.12) 0%, transparent 65%),
              linear-gradient(180deg, rgba(11, 12, 14, 0.96) 0%, rgba(15, 16, 20, 0.98) 100%);
  pointer-events: none;
  z-index: 1;
}

.services-hero-container {
  position: relative;
  z-index: 2;
}

.services-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.services-header-left {
  max-width: 600px;
}

.services-header-left .section-title {
  color: #ffffff;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 1.12;
  margin-top: 10px;
}

.services-header-right {
  max-width: 440px;
}

.services-lead-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* ==================== 6-BOX SERVICES GRID (EXACT TO MOCKUP) ==================== */
.services-boxes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.service-box-card {
  position: relative;
  background: #111216;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 20px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
  user-select: none;
}

.service-box-card:hover {
  background: #16181e;
  border-color: rgba(197, 160, 124, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service-box-card.active {
  background: #15171d;
  border-color: #c5a07c;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 124, 0.12);
  transform: translateY(-4px);
}

.service-box-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #c5a07c;
  margin-bottom: 22px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.service-box-card:hover .service-box-icon,
.service-box-card.active .service-box-icon {
  transform: scale(1.08);
  color: #dfb388;
}

.service-box-title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-box-text {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  margin-top: auto;
}

.service-box-indicator {
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: transparent;
  transition: background 0.25s ease, left 0.25s ease, right 0.25s ease;
}

.service-box-card.active .service-box-indicator {
  background: #c5a07c;
  left: 15%;
  right: 15%;
}

/* ==================== DYNAMIC DETAILS & WORK PHOTOS SECTION ==================== */
.service-details-section {
  background-color: #f7f5ef;
  padding: 80px 0 100px;
  min-height: 500px;
}

.service-detail-pane {
  display: none;
  animation: fadeInPane 0.4s ease forwards;
}

.service-detail-pane.active {
  display: block;
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-overview-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e7e2d6;
  padding: 40px 45px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-overview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-overview-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600;
  color: #1a1816;
  line-height: 1.2;
}

.btn-book-service {
  padding: 12px 26px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  border-radius: 6px;
}

.service-overview-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: #555047;
  max-width: 860px;
}

/* Service Work Photos Showcase */
.service-works-showcase {
  margin-top: 30px;
}

.works-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5dfd2;
}

.works-showcase-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f1d1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.works-showcase-title i {
  color: #c5a07c;
}

.works-count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8a8276;
  text-transform: uppercase;
  background: #ede7dc;
  padding: 6px 14px;
  border-radius: 20px;
}

.service-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.service-work-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7e2d6;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
}

.service-work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #d8cebd;
}

.work-card-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #0d0e12;
}

.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-work-card:hover .work-card-img {
  transform: scale(1.06);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #ffffff;
}

.service-work-card:hover .work-card-overlay {
  opacity: 1;
}

.work-category-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #dfb388;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.work-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 4px;
}

.work-client {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.work-zoom-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1816;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.work-zoom-btn:hover {
  background: #c5a07c;
  color: #ffffff;
  transform: scale(1.1);
}

.work-card-caption {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.work-caption-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1b18;
  margin-bottom: 6px;
}

.work-caption-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #726b62;
  margin-top: auto;
}

.no-works-box {
  background: #ffffff;
  border-radius: 14px;
  border: 1px dashed #d5ccbe;
  padding: 50px 30px;
  text-align: center;
  color: #7c7468;
}

.no-works-box i {
  font-size: 2.4rem;
  color: #c5a07c;
  margin-bottom: 16px;
  display: inline-block;
}

.no-works-box p {
  font-size: 0.95rem;
  margin-bottom: 22px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Banner */
.services-cta-banner {
  background: #0d0f13;
  padding: 70px 0;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: 6px;
  margin-bottom: 10px;
}

.cta-banner-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-banner-btn {
  padding: 15px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Responsive Breakpoints for 6-Box Grid */
@media (max-width: 1200px) {
  .services-boxes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-box-card {
    padding: 24px 14px 20px;
    min-height: 200px;
  }
  .service-box-icon {
    font-size: 1.35rem;
    margin-bottom: 14px;
  }
  .service-overview-card {
    padding: 28px 22px;
  }
  .service-works-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-boxes-grid {
    grid-template-columns: 1fr;
  }
}

.cta-banner-sub {
  font-size: 0.8rem;
  color: #9a9ca6;
}

.cta-banner-btn {
  background: #dfd7cb;
  color: #0c0e12;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.cta-banner-btn:hover {
  background: #ffffff;
  transform: translateX(3px);
  color: #000000;
}

/* Responsive Rules for Services Interactive Layout */
@media (max-width: 1024px) {
  .services-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-interactive-grid {
    grid-template-columns: 1fr;
  }

  .services-tab-sidebar {
    position: relative;
    top: 0;
  }

  .services-tab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .services-tab-list {
    grid-template-columns: 1fr;
  }

  .services-content-panel {
    padding: 28px 20px;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-stepper {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }

  .process-stepper::before {
    display: none;
  }

  .stepper-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }

  .stepper-circle {
    margin: 0;
    flex-shrink: 0;
  }

  .service-cta-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-banner-btn {
    width: 100%;
    justify-content: center;
  }
}


/* Works Hero Full-Width Section */
.works-hero-section {
  position: relative;
  min-height: 560px;
  padding: 180px 0 110px;
  background: url('../assets/images/works_hero_bg.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-dark-border);
  display: flex;
  align-items: center;
}

.works-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 12, 0.94) 0%, rgba(8, 9, 12, 0.78) 45%, rgba(8, 9, 12, 0.2) 85%, rgba(8, 9, 12, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.works-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.works-hero-left {
  max-width: 620px;
}

.works-kicker-orange {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d97a38;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.works-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.works-hero-heading span {
  font-style: italic;
  color: #c5a07c;
}

.works-hero-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* Page Hero Banner */
.page-hero {
  position: relative;
  padding: 160px 0 70px;
  background-color: #0c0e12;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-dark-border);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(197, 160, 124, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(12, 14, 18, 0.85) 0%, rgba(12, 14, 18, 0.98) 100%);
  pointer-events: none;
}

.page-hero-container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--text-light-muted);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumbs .sep {
  opacity: 0.4;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 18px;
  color: #ffffff;
}

.page-hero-title span {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-light-muted);
  max-width: 680px;
  line-height: 1.7;
}

/* Common Inner Page Content Sections */
.inner-page-section {
  padding: 80px 0;
  background-color: var(--bg-cream);
}

.inner-page-section.section-white {
  background-color: #ffffff;
}

.inner-page-section.section-dark {
  background-color: #0c0e12;
  color: #ffffff;
}

/* About Page Styles */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-cream);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(12, 14, 18, 0.88);
  backdrop-filter: blur(8px);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 160, 124, 0.3);
  color: #ffffff;
}

.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.about-story-content .lead-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--text-dark-main);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-story-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark-muted);
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.value-card {
  background: #ffffff;
  border: 1px solid var(--border-cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 124, 0.12);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark-main);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-dark-muted);
}

/* Services Page Styles */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-detailed-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-cream);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-detailed-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: background var(--transition-fast);
}

.service-detailed-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.service-detailed-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--bronze));
}

.service-card-top {
  margin-bottom: 24px;
}

.service-icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-cream-dark);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.service-detailed-card:hover .service-icon-lg {
  background: var(--bronze);
  color: #ffffff;
}

.service-detailed-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-dark-main);
  line-height: 1.25;
  margin-bottom: 12px;
}

.service-detailed-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-cream);
  padding-top: 18px;
  margin-bottom: 24px;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-dark-main);
}

.service-feature-list i {
  color: var(--bronze);
  font-size: 0.75rem;
}

.service-card-action {
  margin-top: auto;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--bronze);
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.service-card-btn:hover {
  color: var(--gold-dark);
  gap: 12px;
}

/* Process Workflow Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  position: relative;
  transition: all var(--transition-fast);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(197, 160, 124, 0.3);
  transform: translateY(-4px);
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.6;
  margin-bottom: 12px;
}

.process-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.process-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-light-muted);
}

/* ==========================================================================
   JOURNAL PAGE DESIGN SYSTEM (EXACT MATCH FOR DESIGN MOCKUP)
   ========================================================================== */

/* Journal Hero Section */
.journal-hero-section {
  position: relative;
  min-height: 560px;
  padding: 180px 0 110px;
  background: url('../assets/images/journal_hero_bg.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-dark-border);
  display: flex;
  align-items: center;
}

.journal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 12, 0.94) 0%, rgba(8, 9, 12, 0.78) 45%, rgba(8, 9, 12, 0.2) 85%, rgba(8, 9, 12, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.journal-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.journal-hero-left {
  max-width: 620px;
}

.journal-kicker-orange {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d97a38;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.journal-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
}

.journal-hero-heading span {
  font-style: italic;
  color: #d97a38;
}

.journal-hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #a5a8b3;
}

.journal-hero-right {
  position: relative;
}

.journal-hero-visual-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #08090b;
}

.journal-hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Journal Main Section */
.journal-interactive-section {
  padding: 60px 0 90px;
  background-color: #f6f4ee;
}

/* Filter Toolbar & Search Bar */
.journal-filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.journal-filter-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.journal-filter-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #5c564f;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.journal-filter-btn:hover {
  background: #eee8df;
  color: #1c1b18;
}

.journal-filter-btn.active {
  background: #121316;
  color: #ffffff;
}

.journal-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.journal-search-input {
  padding: 9px 38px 9px 16px;
  border-radius: 6px;
  background: #eee9df;
  border: 1px solid #ded7ca;
  font-size: 0.82rem;
  color: #1c1b18;
  width: 220px;
  transition: all 0.2s ease;
}

.journal-search-input::placeholder {
  color: #8a8276;
}

.journal-search-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #8b572a;
  box-shadow: 0 0 0 3px rgba(139, 87, 42, 0.12);
  width: 250px;
}

.journal-search-icon {
  position: absolute;
  right: 12px;
  font-size: 0.8rem;
  color: #8a8276;
  pointer-events: none;
}

/* Journal Grid (3 Columns) */
.journal-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.journal-article-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ece6dc;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.journal-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  border-color: rgba(197, 160, 124, 0.4);
}

.journal-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background-color: #1a1714;
}

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

.journal-article-card:hover .journal-card-img-wrap img {
  transform: scale(1.04);
}

.journal-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.journal-card-category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b572a;
  margin-bottom: 8px;
}

.journal-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #1c1b18;
  line-height: 1.28;
  margin-bottom: 10px;
}

.journal-card-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #6e685f;
  margin-bottom: 20px;
  flex: 1;
}

.journal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f2ede4;
  padding-top: 14px;
}

.journal-author-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.journal-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3a3229;
  color: #dfbe9f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
}

.journal-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-author-info {
  display: flex;
  flex-direction: column;
}

.journal-author-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: #1c1b18;
  line-height: 1.2;
}

.journal-author-date {
  font-size: 0.68rem;
  color: #8c8479;
}

.journal-reading-time {
  font-size: 0.72rem;
  color: #8c8479;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Pagination Bar */
.journal-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
}

.journal-page-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #ded7ca;
  background: #ffffff;
  color: #5c564f;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.journal-page-btn:hover {
  background: #eee8df;
  color: #1c1b18;
}

.journal-page-btn.active {
  background: #8b572a;
  border-color: #8b572a;
  color: #ffffff;
}

.journal-page-dots {
  font-size: 0.85rem;
  color: #8c8479;
  padding: 0 4px;
}

/* Newsletter Subscription Banner */
.journal-newsletter-banner {
  background-color: #0d0e12;
  border-radius: 14px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #ffffff;
}

.newsletter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #dfbe9f;
  flex-shrink: 0;
}

.newsletter-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a0a3b0;
  display: block;
  margin-bottom: 4px;
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.newsletter-form-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 320px;
}

.newsletter-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 6px;
  background: #191c24;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.82rem;
}

.newsletter-input::placeholder {
  color: #727685;
}

.newsletter-input:focus {
  outline: none;
  border-color: #8b572a;
  background: #1f232d;
}

.newsletter-btn {
  background: #8b572a;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #72441d;
}

.newsletter-subtext {
  font-size: 0.7rem;
  color: #727685;
}

/* Responsive Rules for Journal */
@media (max-width: 1024px) {
  .journal-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .journal-newsletter-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .newsletter-form-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .journal-filter-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .journal-search-wrap {
    width: 100%;
  }

  .journal-search-input {
    width: 100%;
  }

  .journal-articles-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-input-row {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }
}

.journal-title {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark-main);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.journal-card:hover .journal-title {
  color: var(--bronze);
}

.journal-snippet {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

.journal-read-more {
  margin-top: auto;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.journal-read-more:hover {
  gap: 10px;
}

/* Contact Page Layout */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 50px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-method-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e7e1d4;
}

/* ==========================================================================
   CONTACT PAGE DESIGN SYSTEM (EXACT MATCH FOR DESIGN MOCKUP)
   ========================================================================== */

/* Contact Hero Section */
.contact-hero-section {
  position: relative;
  min-height: 560px;
  padding: 180px 0 110px;
  background: url('../assets/images/contact_hero_bg.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid var(--bg-dark-border);
  display: flex;
  align-items: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 12, 0.94) 0%, rgba(8, 9, 12, 0.78) 45%, rgba(8, 9, 12, 0.2) 85%, rgba(8, 9, 12, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-hero-left {
  max-width: 620px;
}

.contact-kicker-orange {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d97a38;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.contact-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-hero-heading span {
  font-style: italic;
  color: #d97a38;
}

.contact-hero-rule {
  width: 54px;
  height: 2px;
  background-color: #d97a38;
  margin-bottom: 22px;
}

.contact-hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #a5a8b3;
}

.contact-hero-right {
  position: relative;
}

.contact-hero-visual-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #08090b;
}

.contact-hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Main Section */
.contact-interactive-section {
  padding: 80px 0 100px;
  background-color: #f6f4ee;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.contact-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: #1c1b18;
  line-height: 1.2;
  margin-top: 6px;
  margin-bottom: 26px;
}

/* Form Styles */
.contact-form-styled {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-control-styled {
  width: 100%;
  padding: 14px 18px;
  background-color: #eee9df;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: #1c1b18;
  transition: all 0.22s ease;
}

.form-control-styled::placeholder {
  color: #8c857b;
}

.form-control-styled:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #c5a07c;
  box-shadow: 0 0 0 3px rgba(197, 160, 124, 0.15);
}

select.form-control-styled {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e675f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
  cursor: pointer;
}

textarea.form-control-styled {
  resize: vertical;
  min-height: 120px;
}

.btn-send-message {
  background-color: #8b572a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 4px;
}

.btn-send-message:hover {
  background-color: #72441d;
  box-shadow: 0 6px 18px rgba(139, 87, 42, 0.25);
  transform: translateY(-2px);
}

.privacy-badge-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: #827b70;
  line-height: 1.4;
}

.privacy-badge-note i {
  font-size: 1.15rem;
  color: #9a704f;
  flex-shrink: 0;
}

/* Contact Info Column */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 32px 0 36px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-circle-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #121316;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-info-item:hover .contact-circle-icon {
  transform: scale(1.08);
  background-color: #8b572a;
}

.contact-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1c1b18;
  line-height: 1.3;
}

.contact-item-title a {
  color: inherit;
  transition: color 0.2s;
}

.contact-item-title a:hover {
  color: #8b572a;
}

.contact-item-sub {
  font-size: 0.82rem;
  color: #7a7369;
  margin-top: 2px;
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.contact-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #121316;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.22s ease;
  text-decoration: none;
}

.contact-social-btn:hover {
  background-color: #8b572a;
  transform: translateY(-3px);
  color: #ffffff;
}

/* Map Wrapper */
.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5dfd2;
  margin-bottom: 40px;
}

.contact-map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom Hours & Response Card */
.contact-hours-card {
  background-color: #ddd5c7;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hours-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
}

.hours-card-item.with-border {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.hours-circle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #121316;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.hours-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1c1b18;
  margin-bottom: 3px;
}

.hours-item-desc {
  font-size: 0.84rem;
  line-height: 1.45;
  color: #615a51;
}

.hours-photographer-img-box {
  height: 100%;
  min-height: 120px;
  overflow: hidden;
}

.hours-photographer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Rules for Contact Layout */
@media (max-width: 1024px) {
  .contact-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-hours-card {
    grid-template-columns: 1fr 1fr;
  }
  .hours-photographer-img-box {
    grid-column: span 2;
    max-height: 160px;
  }
}

@media (max-width: 768px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
  .contact-hours-card {
    grid-template-columns: 1fr;
  }
  .hours-card-item.with-border {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .hours-photographer-img-box {
    grid-column: span 1;
    max-height: 140px;
  }
}

/* ==========================================================================
   LET'S TALK / BOOK A SERVICE MODAL POPUP (EXACT MATCH FOR DESIGN MOCKUP)
   ========================================================================== */
/* Clean Basic Contact Modal */
.talk-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.talk-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.talk-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.basic-contact-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 38px 36px 36px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
  border: 1px solid #e7e1d4;
}

.talk-modal.active .basic-contact-dialog {
  transform: translateY(0) scale(1);
}

.talk-modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4efe6;
  color: #2b2723;
  border: none;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.talk-modal-close-btn:hover {
  background: #1c1b18;
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-basic-header {
  margin-bottom: 24px;
}

.modal-basic-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #d97a38;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.modal-basic-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: #1c1b18;
  line-height: 1.2;
  margin-bottom: 6px;
}

.modal-basic-sub {
  font-size: 0.88rem;
  color: #6a645b;
  margin: 0;
}

.modal-basic-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-basic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-basic-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-basic-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2b2823;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-basic-label .req {
  color: #d97a38;
}

.modal-basic-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd7ca;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #1c1b18;
  background-color: #faf8f5;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.modal-basic-input:focus {
  border-color: #8b572a;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(139, 87, 42, 0.12);
}

.modal-basic-textarea {
  resize: vertical;
  min-height: 90px;
}

.modal-basic-actions {
  margin-top: 8px;
}

.btn-basic-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #1c1b18;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
}
/* ==========================================================================
   ABOUT PAGE DESIGN (EXACT MATCH FOR MOCKUP)
   ========================================================================== */
.about-hero-section {
  position: relative;
  min-height: 560px;
  padding: 180px 0 110px;
  background: url('../assets/images/about_hero_bg.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  border-bottom: 1px solid #1c1f26;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 12, 0.94) 0%, rgba(8, 9, 12, 0.78) 45%, rgba(8, 9, 12, 0.2) 85%, rgba(8, 9, 12, 0.4) 100%);
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.about-hero-left {
  max-width: 620px;
}

.about-kicker-orange {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d97a38;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.about-hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.2vw, 4.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.about-hero-heading span {
  font-style: italic;
  color: #c5a07c;
}

.about-hero-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* SECTION 2: WHO WE ARE */
.about-who-section {
  padding: 90px 0 80px;
  background-color: #f6f4ee;
}

.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-who-image-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2ddd3;
  background-color: #0d0c0b;
}

.about-who-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.about-who-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 600;
  color: #1c1b18;
  line-height: 1.15;
  margin-top: 4px;
  margin-bottom: 18px;
}

.about-who-heading span {
  font-style: italic;
  color: #d97a38;
}

.about-who-rule {
  width: 50px;
  height: 2px;
  background-color: #d97a38;
  margin-bottom: 22px;
}

.about-who-p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: #555048;
  margin-bottom: 16px;
}

.about-feature-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e5dfd2;
}

.about-badge-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.about-badge-icon {
  font-size: 1.6rem;
  color: #3b3730;
}

.about-badge-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2b2823;
  line-height: 1.3;
}

/* SECTION 3: OUR TEAM (THE MINDS BEHIND THE LENS) */
.about-team-section {
  padding: 80px 0 100px;
  background-color: #f6f4ee;
  border-top: 1px solid #eae4d8;
}

.about-team-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 50px;
}

.about-team-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  color: #1c1b18;
  line-height: 1.2;
  margin-top: 6px;
}

.about-team-desc {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #635d54;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-team-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  background: #ffffff;
  border: 1px solid #e7e1d4;
  border-radius: 16px;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.team-card-image {
  border-radius: 12px;
  overflow: hidden;
  background: #0f1014;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 10px;
}

.team-card-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 500;
  color: #c5a07c;
  line-height: 1;
  margin-bottom: 6px;
}

.team-card-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #1c1b18;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: #70685e;
  text-transform: capitalize;
  margin-bottom: 14px;
}

.team-card-rule {
  width: 32px;
  height: 1.5px;
  background-color: #2b2723;
  margin-bottom: 16px;
}

.team-card-bio {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #615a50;
  margin-bottom: 20px;
}

.team-card-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0ebe0;
  color: #2d2925;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.22s ease;
}

.team-social-icon:hover {
  background: #1c1b18;
  color: #ffffff;
  transform: translateY(-2px);
}

/* SECTION 4: CLIENT LOVE (TESTIMONIALS) */
.about-testimonials-section {
  padding: 90px 0;
  background-color: #0c0e12;
  color: #ffffff;
}

.about-testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
}

.about-testi-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: 6px;
}

.about-testi-arrows {
  display: flex;
  gap: 10px;
}

.testi-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #181a20;
  border: 1px solid #282a32;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
}

.testi-arrow-btn:hover {
  background: #d97a38;
  border-color: #d97a38;
}

.about-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-testi-card {
  background: #15171d;
  border: 1px solid #232630;
  border-radius: 16px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.about-testi-card:hover {
  transform: translateY(-4px);
  border-color: #c5a07c;
}

.testi-quote-icon {
  font-size: 2.2rem;
  color: #c5a07c;
  line-height: 1;
}

.testi-quote-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #c4c7d4;
}

.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2a2d38;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid #3c404f;
  flex-shrink: 0;
}

.testi-author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

.testi-author-type {
  font-size: 0.74rem;
  color: #8c909e;
}

/* SECTION 5: TRUSTED BY (OUR CLIENTS) */
.about-clients-section {
  padding: 70px 0 80px;
  background-color: #f6f4ee;
}

.about-clients-header {
  margin-bottom: 36px;
}

.about-clients-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 600;
  color: #1c1b18;
  margin-top: 4px;
}

.about-clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  border: 1px solid #ded7ca;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.client-logo-item {
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #eee7db;
  min-height: 100px;
  transition: background-color 0.22s ease;
}

.client-logo-item:last-child {
  border-right: none;
}

.client-logo-item:hover {
  background-color: #faf7f2;
}

.client-logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #2b2723;
  text-transform: uppercase;
}

.client-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: #7a7267;
  text-transform: uppercase;
  margin-top: 3px;
}

.client-logo-mark {
  font-size: 1.4rem;
  color: #3b352e;
  margin-bottom: 4px;
}

/* Responsive Rules for About Layout */
@media (max-width: 1024px) {
  .about-hero-container {
    grid-template-columns: 1fr;
  }
  .about-who-grid {
    grid-template-columns: 1fr;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-testi-grid {
    grid-template-columns: 1fr;
  }
  .about-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .client-logo-item:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .about-feature-badges-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-team-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-team-card {
    grid-template-columns: 1fr;
  }
  .about-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-logo-item:nth-child(2n) {
    border-right: none;
  }
}

/* ==========================================================================
   LEGAL / PRIVACY & TERMS PAGE STYLES
   ========================================================================== */
.legal-hero-section {
  position: relative;
  padding: 160px 0 80px;
  background-color: #0c0e12;
  color: #ffffff;
  border-bottom: 1px solid #1c1f26;
  background-image: radial-gradient(circle at 80% 20%, rgba(217, 122, 56, 0.08) 0%, transparent 60%);
}

.legal-hero-container {
  max-width: 900px;
}

.legal-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d97a38;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.legal-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.legal-hero-title span {
  font-style: italic;
  color: #c5a07c;
}

.legal-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: #8c909e;
}

.legal-hero-meta span i {
  color: #d97a38;
  margin-right: 6px;
}

.legal-body-section {
  padding: 80px 0 100px;
  background-color: #f6f4ee;
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sticky Sidebar Table of Contents */
.legal-toc-sidebar {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border: 1px solid #e7e1d4;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.legal-toc-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #1c1b18;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee7db;
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-toc-link {
  font-size: 0.86rem;
  color: #635d54;
  text-decoration: none;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-link:hover,
.legal-toc-link.active {
  color: #d97a38;
  background-color: #faf5ed;
  font-weight: 600;
  transform: translateX(3px);
}

.legal-content-card {
  background: #ffffff;
  border: 1px solid #e7e1d4;
  border-radius: 20px;
  padding: 50px 48px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03);
}

.legal-section-block {
  margin-bottom: 48px;
  scroll-margin-top: 120px;
}

.legal-section-block:last-child {
  margin-bottom: 0;
}

.legal-block-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: #c5a07c;
  line-height: 1;
  margin-bottom: 6px;
}

.legal-block-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: #1c1b18;
  margin-bottom: 18px;
  line-height: 1.25;
}

.legal-block-p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #555048;
  margin-bottom: 16px;
}

.legal-block-list {
  margin: 16px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-block-list li {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #555048;
  position: relative;
  padding-left: 6px;
}

.legal-highlight-box {
  background: #faf7f2;
  border-left: 3px solid #d97a38;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
}

.legal-highlight-box p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4a453e;
  margin: 0;
}

.legal-contact-callout {
  background: #0c0e12;
  color: #ffffff;
  border-radius: 14px;
  padding: 30px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-callout-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.legal-callout-desc {
  font-size: 0.88rem;
  color: #a5a8b3;
  margin: 0;
}

.legal-callout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d97a38;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.22s ease;
}

.legal-callout-btn:hover {
  background: #bf662a;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-toc-sidebar {
    position: static;
    top: auto;
  }

  .legal-content-card {
    padding: 36px 28px;
  }

  .legal-contact-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}
