/* ========================================
   DC STYLE & COMPANY - PREMIUM REDESIGN
   Full-width cinematic hero + elevated luxury feel
======================================== */

:root {
  --cream: #F8F5F0;
  --cream-dark: #F2EDE5;
  --burgundy: #5C2E2E;
  --burgundy-dark: #4A2424;
  --burgundy-pale: rgba(92, 46, 46, 0.07);
  --dark-brown: #352A28;
  --dark-brown-2: #2C2522;
  --gold: #C5A46E;
  --gold-light: #D9C49A;
  --text-dark: #2C2522;
  --text-muted: #6B5F57;
  --text-light: #EDE4D6;
  --white: #FFFFFF;
  --border-light: #E8E0D5;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.25rem;
}

/* ========================================
   TOP NAV - Refined Premium
======================================== */
.topbar {
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding: 1.05rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease, box-shadow 0.4s ease;
}

.topbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(248, 245, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 28px -14px rgba(53, 42, 40, 0.4);
}

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

/* Premium Logo Block */
.logo-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  overflow: hidden;
}

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

.logo-dc {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.46rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* adjusted for padding */
  list-style: none;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-serif);
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
  background: rgba(92, 46, 46, 0.07);
}

.nav-cta {
  color: var(--white) !important;
  padding: 0.78rem 1.9rem;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-serif);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--cream);
  padding: 1.25rem 1rem;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 200;
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.75rem 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu .btn {
  color: var(--white);
  border-bottom: none;
  font-family: var(--font-serif);
}

/* ========================================
   PREMIUM FULL-WIDTH HERO
======================================== */
.hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-brown-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../hero.jpg');
  background-size: cover;
  background-position: 58% center; /* nice framing for the woman */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44, 37, 34, 0.95) 0%,
    rgba(44, 37, 34, 0.92) 22%,
    rgba(44, 37, 34, 0.78) 34%,
    rgba(44, 37, 34, 0.45) 46%,
    rgba(44, 37, 34, 0.18) 58%,
    rgba(44, 37, 34, 0.05) 70%,
    transparent 82%
  );
  z-index: 2;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  gap: 2.5rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 500px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: #D4C4A8;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
}

.hero h1 {
  font-size: 3.85rem;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 25px rgba(0,0,0,0.4);
}

.hero h1 .style-word {
  font-style: italic;
  color: #D4C4A8;
  font-weight: 400;
}

.hero p {
  font-size: 1.0rem;
  color: #E8DFD1;
  max-width: 460px;
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Bottom Icons Row - Much stronger & clearer */
.hero-bottom-icons {
  display: flex;
  gap: 2.25rem;
  margin-top: 1.5rem;
}

.hero-bottom-icons .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.8px;
  color: #EDE4D6;
  text-align: center;
  line-height: 1.25;
}

.hero-bottom-icons .icon-circle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EDE4D6;
  transition: var(--transition);
}

.hero-bottom-icons .icon-item:hover .icon-circle {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 164, 110, 0.1);
  transform: translateY(-2px);
}

/* Refined Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.1rem;
  font-size: 0.78rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  border-radius: 30px;
}

.btn-burgundy {
  background: linear-gradient(135deg, #6E3232 0%, #461C1C 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74, 36, 36, 0.15);
}

.btn-burgundy:hover {
  background: linear-gradient(135deg, #7E3A3A 0%, #522222 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 36, 36, 0.25);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Premium Floating Credentials Card - Glassmorphism & Precise Align */
.hero-badge {
  background: rgba(44, 37, 34, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #EDE4D6;
  padding: 1.6rem 1.6rem 1.2rem;
  width: 295px;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  align-self: center;
}

.hero-badge .badge-header {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: #C5A46E;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-badge ul {
  list-style: none;
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 0.95rem;
}

.hero-badge li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.badge-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-badge .badge-signature {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #C5A46E;
  text-align: right;
  font-style: italic;
  margin-top: 0.4rem;
}

/* Footer Logo CSS */
.footer-logo-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.footer-logo-dc {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
  line-height: 1.2;
}
.footer-logo-by {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.3rem;
}
.footer-logo-tag {
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B7666;
  margin-top: 0.2rem;
}


/* ========================================
   ELEVATED SECTIONS
======================================== */
.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.section-header h2 {
  font-size: 2.55rem;
  margin-bottom: 0.6rem;
}

.section-header .subtitle {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Gold divider */
.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.35rem auto;
}

/* ========================================
   EXPERTISE - More Premium
======================================== */
.expertise {
  background: var(--dark-brown);
  color: var(--text-light);
  padding: 5.25rem 0 5.75rem;
}

.expertise-header {
  max-width: 780px;
  margin-bottom: 3.5rem;
}

.expertise-header h2 {
  color: var(--text-light);
  font-size: 2.35rem;
  line-height: 1.15;
}

.expertise-header p {
  color: #B8A898;
  margin-top: 1rem;
  font-size: 1.02rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.expertise-card {
  background: #413631;
  transition: var(--transition);
  overflow: hidden;
}

.expertise-card:hover {
  transform: translateY(-6px);
}

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

.expertise-card:hover img.main {
  transform: scale(1.08);
}

.expertise-card .content {
  padding: 1.35rem 1.35rem 1.5rem;
}

.expertise-card h4 {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.expertise-card .icon {
  width: 26px;
  height: 26px;
  margin-bottom: 0.85rem;
  opacity: 0.9;
  filter: brightness(0) invert(1); /* Forces SVG image to be solid white */
}

.expertise-card h4 {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0.45rem;
  letter-spacing: 0.3px;
}

.expertise-card p {
  font-size: 0.78rem;
  color: #A89989;
  line-height: 1.55;
}

/* ========================================
   SIGNATURE SERVICES - Premium Cards
======================================== */
.signature-services {
  background: var(--cream);
  padding: 5.75rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.35rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.9rem 1.65rem;
  transition: var(--transition);
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card:hover {
  border-color: #D9C8A8;
  box-shadow: 0 15px 45px -20px rgba(0,0,0,0.08);
}

.service-card .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.1rem;
}

.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.service-card .learn {
  font-size: 0.74rem;
  letter-spacing: 1.8px;
  color: var(--burgundy);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ========================================
   HOW IT WORKS + BOOKING (Premium)
======================================== */
.how-it-works {
  background: var(--cream-dark);
  padding: 5rem 0;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.85rem;
}

.step-number {
  width: 29px;
  height: 29px;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
  border-radius: 50%;
}

.step-content h5 {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.booking-box {
  background: var(--white);
  padding: 2.6rem;
  box-shadow: 0 20px 60px -25px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--border-light);
}

.booking-box h3 {
  margin-bottom: 1.65rem;
  font-size: 1.45rem;
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.booking-option {
  border: 1px solid var(--border-light);
  padding: 1.1rem;
  font-size: 0.86rem;
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--dark-brown-2);
  color: #B8A898;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid #3F3530;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 56px;
  width: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #F5F0E6;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.footer-logo-by {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C5A46E;
  margin-top: 0.15rem;
}

.footer-about {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #A89888;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 1rem;
}

.footer-social a {
  color: #B8A898;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-social svg {
  display: block;
}

.footer h5 {
  color: #EDE4D6;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  color: #B8A898;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #3F3530;
  font-size: 0.7rem;
  text-align: center;
  color: #7A6B5E;
}

/* ========================================
   PORTFOLIO - Elevated
======================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2.75rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.45rem;
  font-size: 0.74rem;
  letter-spacing: 1.8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 1.45rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f4f0e8;
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}

.portfolio-item:hover img {
  transform: scale(1.09);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem 1.55rem;
  background: linear-gradient(transparent, rgba(44,37,34,0.94));
  color: var(--cream);
}

.portfolio-overlay h4 {
  font-size: 1.08rem;
  margin-bottom: 0.3rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 300;
  padding: 2.5rem;
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal-content {
  max-width: 1120px;
  width: 100%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.75rem;
  position: relative;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

.modal-details {
  padding: 3rem 2.25rem 2.5rem 0;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

/* ========================================
   FORMS & MISC
======================================== */
input, textarea, select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-family: inherit;
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--burgundy);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

/* About Page */
.about-hero-section {
  background: var(--cream);
  padding: 5rem 0 4rem;
}

.about-hero-container {
  max-width: 860px;
  text-align: center;
}

.about-hero-subtitle {
  font-size: 0.72rem;
  letter-spacing: 4.5px;
  color: var(--gold);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.about-hero-title {
  font-size: 2.95rem;
  margin-bottom: 1.6rem;
  line-height: 1.15;
}

.about-hero-p {
  font-size: 1.08rem;
  color: var(--text-muted);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
}

.about-story-item h3 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.about-story-item p {
  color: var(--text-muted);
}

.about-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.about-expertise-card {
  background: #413631;
  padding: 2rem 1.9rem;
  color: #EDE4D6;
}

.about-expertise-card strong {
  color: #C5A46E;
  display: block;
}

.about-expertise-card p {
  margin-top: 0.9rem;
  font-size: 0.95rem;
}

.about-studio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
}

/* Contact Page */
.contact-hero-section {
  background: var(--cream);
  padding: 4.75rem 0 3rem;
}

.contact-hero-container {
  text-align: center;
  max-width: 640px;
}

.contact-hero-subtitle {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.contact-hero-title {
  margin: 0.5rem 0 0.65rem;
}

.contact-hero-p {
  color: var(--text-muted);
}

.contact-container {
  max-width: 1120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
}

.contact-info-title {
  margin-bottom: 1.9rem;
}

.contact-info-item {
  margin-bottom: 1.7rem;
}

.contact-info-item strong {
  color: #C5A46E;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-info-item span {
  font-size: 0.9rem;
  color: #6B5F57;
}

.contact-form label {
  font-size: 0.7rem;
  letter-spacing: 1.8px;
  display: block;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Honeypot anti-spam field — hidden from real users */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Contact form error state */
.form-error {
  background: #FBEDEA;
  border: 1px solid #C98A7E;
  color: #5C2E2E;
  padding: 1.5rem 1.6rem;
  margin-top: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.form-error strong {
  display: block;
  margin-bottom: 0.35rem;
}

.form-error a {
  color: var(--burgundy);
  text-decoration: underline;
  font-weight: 600;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.35rem;
  }
  
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .how-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .topbar {
    padding: 0.7rem 0;
  }

  /* Responsive logo settings */
  .logo-icon {
    width: 36px;
    height: 36px;
  }

  .logo-main {
    font-size: 0.9rem;
  }

  .logo-sub {
    font-size: 0.48rem;
  }

  .logo-tagline {
    display: none;
  }

  /* Hide header booking CTA on mobile to fit the logo and hamburger */
  .nav-cta {
    display: none;
  }

  /* Hero Mobile - Stack elements vertically and center */
  .hero {
    padding: 3rem 0 3.5rem;
    min-height: calc(100vh - 62px);
    min-height: calc(100dvh - 62px);
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(44, 37, 34, 0.9) 0%,
      rgba(44, 37, 34, 0.8) 50%,
      rgba(44, 37, 34, 0.92) 100%
    );
  }

  .hero-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 1rem 0 0;
    max-width: 100%;
    width: 100%;
    padding: 1rem 1.1rem;
  }

  .hero-bottom-icons {
    gap: 1.1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
  }

  .hero-bottom-icons .icon-item {
    font-size: 0.58rem;
    min-width: 68px;
  }

  .hero-bottom-icons .icon-circle {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  /* Responsive Booking Box */
  .booking-box {
    padding: 1.5rem;
  }

  .booking-options {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  /* Grids */
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .footer-about {
    max-width: 100%;
    font-size: 0.78rem;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 280px;
  }

  .modal-details {
    padding: 1.5rem;
  }

  /* Filters */
  .filters {
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .filter-btn {
    padding: 0.55rem 0.8rem;
    font-size: 0.68rem;
    min-height: 42px;
  }

  .service-card {
    padding: 1.3rem 1.15rem;
  }

  .service-card .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.85rem;
  }

  /* About Page Mobile Overrides */
  .about-hero-section {
    padding: 3.5rem 0 2.5rem;
  }
  
  .about-hero-title {
    font-size: 1.85rem;
    margin-bottom: 1.1rem;
  }
  
  .about-hero-p {
    font-size: 0.95rem;
  }
  
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .about-story-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
  }
  
  .about-expertise-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-expertise-card {
    padding: 1.5rem 1.25rem;
  }
  
  .about-studio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Contact Page Mobile Overrides */
  .contact-hero-section {
    padding: 3.5rem 0 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 0.88rem;
  }

  .about-hero-title {
    font-size: 1.6rem;
  }

  .hero-badge {
    padding: 1rem 1rem;
  }

  .hero-bottom-icons {
    gap: 0.75rem;
    margin-top: 0.75rem;
  }

  .hero-bottom-icons .icon-item {
    font-size: 0.52rem;
  }

  .hero-bottom-icons .icon-circle {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }

  .topbar {
    padding: 0.7rem 0;
  }

  .service-card {
    padding: 1.2rem 1.05rem;
  }

  .services-grid {
    gap: 0.85rem;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   ENHANCEMENTS — progress bar, stagger,
   floating buttons, booking popup, polish
======================================== */

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 150;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold) 50%, var(--burgundy));
  box-shadow: 0 0 12px rgba(197, 164, 110, 0.55);
  transition: width 0.1s linear;
}

/* Staggered item reveal (grids) */
.fx-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fx-item.fx-in {
  opacity: 1;
  transform: none;
}

/* Slightly nicer card lift accents */
.service-card .icon,
.expertise-card .icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .icon {
  transform: translateY(-4px) scale(1.06);
}

.service-card .learn {
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card:hover .learn {
  gap: 0.7rem;
  color: var(--gold);
}

/* Accessible focus ring */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.fab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------------------
   Floating action buttons (WhatsApp + Book)
---------------------------------------- */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 56px;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.74rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease, padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fab .fab-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fab .fab-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.fab .fab-label {
  max-width: 0;
  opacity: 0;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.4s ease;
  padding-right: 0;
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.5);
}

.fab:hover .fab-label {
  max-width: 220px;
  opacity: 1;
  padding-right: 1.35rem;
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab-book {
  background: linear-gradient(135deg, #6E3232 0%, #461C1C 100%);
}

/* Attention pulse on the WhatsApp button */
.fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: fabPulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ----------------------------------------
   Booking popup modal
---------------------------------------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(28, 22, 20, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.booking-dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(197, 164, 110, 0.4);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
  padding: 2.4rem 2.1rem 2.1rem;
  transform: translateY(26px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.booking-modal.open .booking-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.booking-dialog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--burgundy));
}

.booking-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.booking-close:hover {
  color: var(--burgundy);
  background: rgba(92, 46, 46, 0.08);
}

.booking-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.booking-dialog h3 {
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.booking-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.booking-form label {
  font-size: 0.66rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.35rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  margin-bottom: 0.9rem;
  padding: 0.72rem 0.9rem;
  font-size: 0.92rem;
  border-radius: 6px;
}

.booking-form textarea {
  min-height: 78px;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  gap: 0.6rem;
}

.btn-whatsapp svg {
  width: 19px;
  height: 19px;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -6px rgba(18, 140, 126, 0.55);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

.btn-ghost:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.booking-reassure {
  margin-top: 1rem;
  font-size: 0.72rem;
  text-align: center;
  color: #8B7666;
}

.booking-error {
  margin-top: 0.9rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  text-align: center;
  color: #5C2E2E;
  background: #FBEDEA;
  border: 1px solid #C98A7E;
  border-radius: 6px;
}

.booking-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
}

.booking-success .tick {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.booking-success .tick svg {
  width: 28px;
  height: 28px;
}

.booking-success h3 {
  margin-bottom: 0.5rem;
}

.booking-success p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

body.modal-open {
  overflow: hidden;
}

/* Mobile tweaks for floating UI + popup */
@media (max-width: 768px) {
  .fab-stack {
    right: 14px;
    bottom: 14px;
    gap: 0.65rem;
  }

  .fab {
    height: 52px;
  }

  .fab .fab-icon {
    width: 52px;
    height: 52px;
  }

  /* On touch screens the Book pill stays compact; label hidden */
  .fab-book .fab-label {
    display: none;
  }

  .booking-dialog {
    padding: 2rem 1.4rem 1.6rem;
  }

  .booking-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .fx-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .fab-whatsapp::after {
    animation: none;
  }

  .scroll-progress span {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}