:root {
  --bg-dark: #07071a;
  --bg-muted: #101030;
  --bg-light: #ffffff;
  --accent: #000000;
  --accent-soft: rgba(0, 0, 0, 0.07);
  --text-primary: #111111;
  --text-secondary: #444444;
  --text-inverse: #f8fafc;
  --border-color: rgba(148, 163, 184, 0.2);
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --container-width: min(1100px, 92vw);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-light);
  color: var(--text-primary);
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

/* --- Header --- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: transparent;
  border-bottom: none;
  padding: 1.5rem 0;
}

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

.brand {
  display: flex;
  align-items: center;
}

.brand-text h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff; /* Always white on hero */
}

.navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: #ffffff;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-image: url('hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Darkens the image for readability */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  margin: 0.5rem 0 1rem;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 700px;
}

.hero-subtext p {
  margin: 0;
}

/* --- Other Sections --- */
.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0;
}

.about, .services, .projects, .testimonials, .gallery, .contact {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.about-content p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.skills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.skills li {
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.service-grid, .project-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card, .project-card {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.service-card h3, .project-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-card p, .project-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-link {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}

.project-meta {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin: 0;
}

.project-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.project-card li {
  padding: 0.35rem 0.85rem;
  background: #f1f1f1;
  color: var(--text-primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.85rem 2rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.secondary:hover {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: white;
}

.btn-project {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-project:hover {
  background: var(--text-primary);
  color: white;
}

.projects-action {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.testimonials {
  background: #fff;
  padding: 4rem 0;
}

.timeline {
  background: #f9f9f9;
  padding: 5rem 0;
}

.timeline .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.timeline-item {
  padding: 2rem;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-item.hidden {
  opacity: 0;
  transform: translateY(30px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item .year {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.1rem;
}

.timeline-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-secondary);
}

.video {
  background: var(--bg-dark);
  padding: 5rem 0;
  color: white;
  text-align: center;
}

.video .container {
  display: flex;
  justify-content: center;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 3rem;
  max-width: 640px;
}

.video-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.video-card p {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.testimonial-card {
  padding: 2.5rem 2rem;
  background: #000000;
  border-radius: 18px;
  color: #ffffff;
  display: grid;
  gap: 1.5rem;
}

.testimonial-card footer {
  display: grid;
  gap: 0.2rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Horizontal Scroll Gallery --- */
.gallery-scroll-section {
  height: 300vh;
  position: relative;
  background: var(--bg-light);
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-scroll-section .container {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: var(--container-width);
}

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

.horizontal-track {
  display: flex;
  gap: 4rem;
  padding-left: 5vw; /* Start with some offset */
  width: max-content;
  will-change: transform;
}

.gallery-item {
  position: relative;
  width: 400px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  flex-shrink: 0;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1);
  z-index: 5;
}

.gallery-tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.contact-card {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 1.7rem;
  width: 100%;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.contact-info span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  display: inline-block;
  background: var(--text-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--bg-dark);
  color: var(--text-inverse);
  text-align: center;
}

.site-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .site-header .container {
    padding: 1rem;
  }
  
  .navigation ul {
    gap: 1rem;
  }
}

/* --- Project Details --- */
.project-hero {
  padding: 8rem 0 4rem;
  background: var(--bg-dark);
  color: white;
  text-align: center;
}

.project-date {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.project-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.5rem;
}

.project-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-tags span {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
}

.project-content {
  padding: 4rem 0;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-section {
  margin-bottom: 4rem;
}

.detail-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  color: var(--text-primary);
}

.project-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* --- Global Animations & Polish --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.hero-content {
  animation: fadeIn 1s ease-out;
}

.service-card, .project-card, .testimonial-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover, .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Add a subtle gradient to section backgrounds to break the white */
.about, .services, .contact {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.skills li {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.skills li:hover {
  transform: scale(1.05);
  background-color: var(--bg-muted);
  color: white;
  border-color: transparent;
}

/* Modern Timeline Marker */
.timeline-marker {
  background: white;
  border: 3px solid var(--text-primary);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.timeline-entry:hover .timeline-marker {
  background: var(--text-primary);
  box-shadow: 0 0 0 6px rgba(0,0,0,0.1);
  transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s infinite ease-in-out;
  opacity: 0.7;
}

.scroll-indicator span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}
/* --- Project Detail Split Layout --- */
.project-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.project-description {
  position: sticky;
  top: 2rem;
}

.project-timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-color);
}

.timeline-entry {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-entry:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: calc(-2rem - 6px);
  top: 0.25rem;
  width: 10px;
  height: 10px;
  background: var(--text-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px white;
}

.timeline-entry h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-entry p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .project-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .project-description {
    position: static;
  }
}/ *   - - -   G l o b a l   R e f i n e m e n t s   - - -   * / 
 
 . s e c t i o n - h e a d i n g   { 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     m a r g i n - b o t t o m :   4 r e m ; 
 
     m a x - w i d t h :   8 0 0 p x ; 
 
     m a r g i n - l e f t :   a u t o ; 
 
     m a r g i n - r i g h t :   a u t o ; 
 
 } 
 
 
 
 . s e c t i o n - e y e b r o w   { 
 
     j u s t i f y - s e l f :   c e n t e r ; 
 
     c o l o r :   v a r ( - - a c c e n t ) ; 
 
     f o n t - w e i g h t :   6 0 0 ; 
 
     l e t t e r - s p a c i n g :   0 . 2 5 e m ; 
 
 } 
 
 
 
 . s e c t i o n - h e a d i n g   h 2   { 
 
     f o n t - f a m i l y :   v a r ( - - f o n t - s e r i f ) ; 
 
     f o n t - s i z e :   3 r e m ; 
 
     m a r g i n - t o p :   0 . 5 r e m ; 
 
 } 
 
 
 
 / *   - - -   D a r k   S e r v i c e s   S e c t i o n   - - -   * / 
 
 . s e r v i c e s   { 
 
     b a c k g r o u n d :   v a r ( - - b g - d a r k ) ; 
 
     c o l o r :   w h i t e ; 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 / *   A d d   a   d e c o r a t i v e   g r a d i e n t   b l o b   t o   t h e   d a r k   s e c t i o n   * / 
 
 . s e r v i c e s : : b e f o r e   { 
 
     c o n t e n t :   ' ' ; 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   - 2 0 % ; 
 
     l e f t :   - 1 0 % ; 
 
     w i d t h :   6 0 0 p x ; 
 
     h e i g h t :   6 0 0 p x ; 
 
     b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e ,   r g b a ( 9 1 ,   9 1 ,   2 5 5 ,   0 . 1 5 )   0 % ,   r g b a ( 0 , 0 , 0 , 0 )   7 0 % ) ; 
 
     b o r d e r - r a d i u s :   5 0 % ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . s e r v i c e s   . s e c t i o n - e y e b r o w   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 6 ) ; 
 
 } 
 
 
 
 . s e r v i c e - c a r d   { 
 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
 
     b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 
     c o l o r :   w h i t e ; 
 
     b o x - s h a d o w :   n o n e ; 
 
 } 
 
 
 
 . s e r v i c e - c a r d   h 3   { 
 
     f o n t - s i z e :   1 . 5 r e m ; 
 
     f o n t - w e i g h t :   6 0 0 ; 
 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 . s e r v i c e - c a r d   p   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 ) ; 
 
     f o n t - w e i g h t :   3 0 0 ; 
 
 } 
 
 
 
 / *   - - -   P r o j e c t   C a r d s   R e d e s i g n   - - -   * / 
 
 . p r o j e c t - c a r d   { 
 
     b o r d e r :   n o n e ; 
 
     b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 4 ) ; 
 
     p a d d i n g :   0 ;   / *   R e m o v e   p a d d i n g   t o   l e t   i m a g e   ( i f   w e   a d d e d   o n e )   f i l l ,   b u t   h e r e   w e   t e x t   * / 
 
     o v e r f l o w :   h i d d e n ; 
 
     d i s p l a y :   f l e x ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     h e i g h t :   1 0 0 % ; 
 
 } 
 
 
 
 / *   C r e a t e   a   v i s u a l   h e a d e r   f o r   t h e   p r o j e c t   c a r d   * / 
 
 . p r o j e c t - c a r d   h e a d e r   { 
 
     b a c k g r o u n d :   v a r ( - - b g - d a r k ) ; 
 
     p a d d i n g :   2 r e m   2 . 2 5 r e m   1 r e m ; 
 
     c o l o r :   w h i t e ; 
 
 } 
 
 
 
 . p r o j e c t - c a r d   h e a d e r   h 3   { 
 
     c o l o r :   w h i t e ; 
 
     m a r g i n - b o t t o m :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . p r o j e c t - c a r d   . p r o j e c t - m e t a   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 6 ) ; 
 
 } 
 
 
 
 . p r o j e c t - c a r d   p   { 
 
     p a d d i n g :   1 . 5 r e m   2 . 2 5 r e m   0 ; 
 
     f l e x - g r o w :   1 ; 
 
 } 
 
 
 
 . p r o j e c t - c a r d   u l   { 
 
     p a d d i n g :   0   2 . 2 5 r e m   1 . 5 r e m ; 
 
 } 
 
 
 
 . p r o j e c t - c a r d   . b t n - p r o j e c t   { 
 
     m a r g i n :   0   2 . 2 5 r e m   2 . 2 5 r e m ; 
 
     w i d t h :   c a l c ( 1 0 0 %   -   4 . 5 r e m ) ; 
 
 } 
 
 
 
 / *   - - -   T e s t i m o n i a l   R e f i n e m e n t   - - -   * / 
 
 . t e s t i m o n i a l - c a r d   { 
 
     b a c k g r o u n d :   w h i t e ; 
 
     c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 
     b o x - s h a d o w :   0   5 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 3 ) ; 
 
     p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . t e s t i m o n i a l - c a r d : : b e f o r e   { 
 
     c o n t e n t :   '  ' ; 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   1 r e m ; 
 
     r i g h t :   2 r e m ; 
 
     f o n t - f a m i l y :   v a r ( - - f o n t - s e r i f ) ; 
 
     f o n t - s i z e :   5 r e m ; 
 
     c o l o r :   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
 
     l i n e - h e i g h t :   1 ; 
 
 } 
 
 
 
 . t e s t i m o n i a l - c a r d   f o o t e r   { 
 
     c o l o r :   v a r ( - - t e x t - s e c o n d a r y ) ; 
 
     f o n t - w e i g h t :   5 0 0 ; 
 
 } 
 
 
 
 . t e s t i m o n i a l - c a r d   f o o t e r   c i t e   { 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
 
     f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 / *   - - -   C o n t a c t   S e c t i o n   - - -   * / 
 
 . c o n t a c t - c a r d   { 
 
     b a c k g r o u n d :   v a r ( - - b g - d a r k ) ; 
 
     c o l o r :   w h i t e ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     b o r d e r :   n o n e ; 
 
 } 
 
 
 
 . c o n t a c t - c a r d   h 2   { 
 
     f o n t - f a m i l y :   v a r ( - - f o n t - s e r i f ) ; 
 
 } 
 
 
 
 . c o n t a c t - c a r d   p   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 ) ; 
 
 } 
 
 
 
 . c o n t a c t - i n f o   { 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
 } 
 
 
 
 . c o n t a c t - i n f o   s p a n   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . c o n t a c t - i n f o   a   { 
 
     c o l o r :   w h i t e ; 
 
     f o n t - s i z e :   1 . 1 r e m ; 
 
 } 
 
 
 
 . c o n t a c t - c a r d   . b t n . p r i m a r y   { 
 
     b a c k g r o u n d :   w h i t e ; 
 
     c o l o r :   v a r ( - - b g - d a r k ) ; 
 
     j u s t i f y - s e l f :   c e n t e r ; 
 
     p a d d i n g :   1 r e m   3 r e m ; 
 
 } 
 
 
 
 . c o n t a c t - c a r d   . b t n . p r i m a r y : h o v e r   { 
 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 ) ; 
 
 } 
 
 