/* Dani Louis Design - Modern Redesign 2026 */
:root {
  --brown-dark: #5C4A3A;
  --brown-medium: #7A6352;
  --brown-warm: #9A7B5F;
  --brown-light: #C4A484;
  --brown-soft: #EDE4D8;
  --cream: #F7F2EB;
  --off-white: #FAF7F2;
  --text-dark: #4A3C30;
  --text-muted: #7A6B5C;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(92, 74, 58, 0.07);
  --shadow-hover: 0 12px 40px rgba(92, 74, 58, 0.11);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo-text, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 74, 58, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  position: relative;
}

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

.logo img {
  height: 72px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brown-dark);
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--brown-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
}

.nav-cta:hover {
  background: var(--brown-medium);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #F9F5EF 0%, #F3EDE4 50%, #F7F2EB 100%);
  overflow: hidden;
  padding-top: 92px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(196, 164, 132, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 111, 78, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-logo {
  margin: 0 auto 14px;
  height: 160px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(92, 74, 58, 0.12));
}

.under-construction {
  font-size: 1.15rem;
  color: var(--brown-warm);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 3.6rem);
  color: var(--brown-dark);
  margin-bottom: 22px;
  line-height: 1.18;
  font-weight: 500;
}

.hero .tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 44px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brown-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brown-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--brown-dark);
  border: 1.5px solid var(--brown-warm);
}

.btn-outline:hover {
  background: var(--brown-soft);
  border-color: var(--brown-medium);
}

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

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header .eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-warm);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ========== ABOUT TEASER ========== */
.about-teaser {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  width: 220px;
  height: 280px;
  background: linear-gradient(145deg, #E8D9C8, #D4C0A8);
  flex-shrink: 0;
  margin-top: 110px; /* drops photo further down to align with first paragraph */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-content h2 {
  font-size: 2.4rem;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-content .quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brown-medium);
  border-left: 3px solid var(--brown-light);
  padding-left: 20px;
  margin: 28px 0;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(61, 43, 31, 0.06);
  border-radius: 8px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brown-light), var(--brown-medium));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brown-medium);
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ========== PROCESS ========== */
.process {
  background: var(--brown-dark);
  color: var(--white);
}

.process .section-header .eyebrow {
  color: var(--brown-light);
}

.process .section-header h2 {
  color: var(--white);
}

.process .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

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

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
}

.process-step .number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--brown-light);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.process-step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ========== GALLERY PREVIEW ========== */
.gallery-preview {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 43, 31, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-medium), var(--brown-dark));
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 {
  color: white;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--brown-dark);
}

.cta-banner .btn-primary:hover {
  background: var(--cream);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--brown-dark);
  border-color: var(--brown-warm);
  color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Mobile menu – pure CSS (checkbox hack) */
@media (max-width: 768px) {
  .nav-toggle:checked ~ .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 28px 24px 36px;
    gap: 22px;
    box-shadow: 0 16px 40px rgba(92, 74, 58, 0.15);
    z-index: 999;
    border-top: 1px solid rgba(92, 74, 58, 0.1);
  }

  .nav-toggle:checked ~ .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-toggle:checked ~ .nav-links a {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
  }

  .nav-toggle:checked ~ .nav-links .nav-cta {
    display: inline-block;
    margin-top: 12px;
  }

  .nav-toggle:checked + .mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle:checked + .mobile-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked + .mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image {
    width: 200px;
    height: 250px;
    margin: 0 auto;
    margin-top: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-logo {
    height: 120px;
  }
  section {
    padding: 70px 0;
  }
}

/* Placeholder image styles */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #EDE6DC, #D9CBB8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-warm);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
