/* ==========================================================================
   Whispering Pine Carvings - Main Stylesheet
   A rugged, handcrafted aesthetic with clean modern execution
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Earth-tone color palette */
  --color-pine-dark: #1a2318;
  --color-pine: #2d3a29;
  --color-forest: #3d4f38;
  --color-bark: #4a3728;
  --color-bark-light: #6b5344;
  --color-timber: #8b7355;
  --color-sawdust: #c4a574;
  --color-cream: #f5f0e6;
  --color-white: #fdfcfa;
  --color-accent: #b8860b; /* Dark goldenrod - warm wood highlight */
  --color-error: #a83232;
  --color-success: #3d6b3d;
  
  /* Typography */
  --font-heading: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-cream);
  background-color: var(--color-pine-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover,
a:focus {
  color: var(--color-accent);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: var(--space-md);
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.25rem;
  color: var(--color-sawdust);
}

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--alt {
  background-color: var(--color-pine);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(26, 35, 24, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139, 115, 85, 0.2);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}

.logo:hover {
  color: var(--color-sawdust);
}

.logo__icon {
  width: 40px;
  height: 40px;
  fill: var(--color-sawdust);
}

.nav {
  display: none;
}

.nav--open {
  display: flex;
}

.nav__list {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  padding: var(--space-sm) 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

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

.nav__link:hover,
.nav__link--active {
  color: var(--color-white);
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-cream);
  transition: var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop navigation */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  
  .nav-toggle {
    display: none;
  }
}

/* Mobile navigation */
@media (max-width: 767px) {
  .nav--open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--color-pine-dark);
    border-bottom: 1px solid rgba(139, 115, 85, 0.2);
    padding: var(--space-lg);
  }
  
  .nav__list {
    flex-direction: column;
    gap: var(--space-md);
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  margin-top: 0;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 24, 0.4) 0%,
    rgba(26, 35, 24, 0.7) 100%
  );
}

.hero__content {
  max-width: 800px;
  z-index: 1;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-sawdust);
  margin-bottom: var(--space-md);
}

.hero__title {
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__description {
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-pine-dark);
}

.btn--primary:hover {
  background-color: var(--color-sawdust);
  color: var(--color-pine-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-cream);
  border: 2px solid var(--color-timber);
}

.btn--secondary:hover {
  border-color: var(--color-sawdust);
  color: var(--color-white);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Featured Gallery (Home Page)
   -------------------------------------------------------------------------- */
.featured-gallery {
  padding: var(--space-2xl) 0;
}

.featured-gallery__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.featured-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/5;
  background-color: var(--color-pine);
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.05);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 35, 24, 0.9) 0%,
    transparent 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.gallery-card__category {
  font-size: 0.875rem;
  color: var(--color-sawdust);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-gallery__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* --------------------------------------------------------------------------
   Gallery Page
   -------------------------------------------------------------------------- */
.gallery-page {
  padding-top: 100px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-cream);
  background: transparent;
  border: 1px solid var(--color-timber);
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn--active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-pine-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

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

.gallery-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item__image {
  transform: scale(1.08);
}

.gallery-item__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(26, 35, 24, 0.95), transparent);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-item__info {
  transform: translateY(0);
}

.gallery-item__title {
  font-size: 1rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 35, 24, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__caption {
  text-align: center;
  padding: var(--space-md);
  color: var(--color-cream);
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 115, 85, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--color-cream);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(139, 115, 85, 0.4);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 115, 85, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--color-cream);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(139, 115, 85, 0.4);
}

.lightbox__nav--prev {
  left: var(--space-lg);
}

.lightbox__nav--next {
  right: var(--space-lg);
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.about-page {
  padding-top: 100px;
}

.about-hero {
  padding: var(--space-xl) 0;
  text-align: center;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .about-content {
    grid-template-columns: 1fr 1.2fr;
  }
}

.about-image {
  position: relative;
}

.about-image__main {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.about-image__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-pine-dark);
}

.about-text {
  font-size: 1.125rem;
}

.about-text p {
  margin-bottom: var(--space-lg);
}

.about-signature {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-sawdust);
  margin-top: var(--space-lg);
}

/* Process section */
.process-section {
  margin-top: var(--space-2xl);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.process-card {
  padding: var(--space-lg);
  background-color: var(--color-pine);
  border-radius: 4px;
  border-left: 3px solid var(--color-accent);
}

.process-card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-timber);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.process-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.process-card__text {
  font-size: 1rem;
  color: var(--color-cream);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Commissions Page
   -------------------------------------------------------------------------- */
.commissions-page {
  padding-top: 100px;
}

.commissions-intro {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.commissions-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.info-card {
  padding: var(--space-lg);
  background-color: var(--color-pine);
  border-radius: 4px;
}

.info-card__icon {
  width: 48px;
  height: 48px;
  fill: var(--color-accent);
  margin-bottom: var(--space-md);
}

.info-card__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.info-card__text {
  font-size: 1rem;
  color: var(--color-cream);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Inquiry Form
   -------------------------------------------------------------------------- */
.inquiry-form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xl);
  background-color: var(--color-pine);
  border-radius: 4px;
}

.inquiry-form__title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 600px) {
  .form-row--two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-sawdust);
  margin-bottom: var(--space-xs);
}

.form-label--required::after {
  content: ' *';
  color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  background-color: var(--color-pine-dark);
  border: 1px solid var(--color-timber);
  border-radius: 3px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-timber);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b7355' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* File upload */
.file-upload {
  position: relative;
}

.file-upload__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.file-upload__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  border: 2px dashed var(--color-timber);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.file-upload__label:hover {
  border-color: var(--color-sawdust);
  background-color: rgba(139, 115, 85, 0.1);
}

.file-upload__icon {
  width: 32px;
  height: 32px;
  fill: var(--color-timber);
  margin-bottom: var(--space-sm);
}

.file-upload__text {
  font-size: 0.9rem;
  color: var(--color-cream);
}

.file-upload__hint {
  font-size: 0.8rem;
  color: var(--color-timber);
  margin-top: var(--space-xs);
}

.file-upload__preview {
  display: none;
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  color: var(--color-sawdust);
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.checkbox-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.95rem;
  color: var(--color-cream);
  cursor: pointer;
}

/* Form validation states */
.form-input--error,
.form-select--error,
.form-textarea--error {
  border-color: var(--color-error);
}

.form-error {
  font-size: 0.85rem;
  color: var(--color-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-group--error .form-error {
  display: block;
}

/* Form submit */
.form-submit {
  text-align: center;
  margin-top: var(--space-lg);
}

.form-submit .btn {
  min-width: 200px;
}

/* Form messages */
.form-message {
  padding: var(--space-md);
  border-radius: 3px;
  text-align: center;
  margin-bottom: var(--space-lg);
  display: none;
}

.form-message--success {
  background-color: rgba(61, 107, 61, 0.2);
  border: 1px solid var(--color-success);
  color: #8fbc8f;
}

.form-message--error {
  background-color: rgba(168, 50, 50, 0.2);
  border: 1px solid var(--color-error);
  color: #e08080;
}

.form-message--visible {
  display: block;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: var(--space-xl) 0;
  background-color: var(--color-pine);
  border-top: 1px solid rgba(139, 115, 85, 0.2);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .footer__brand {
    align-items: flex-start;
  }
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--color-timber);
}

.footer__nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-cream);
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__copyright {
  font-size: 0.85rem;
  color: var(--color-timber);
}

/* --------------------------------------------------------------------------
   Page Header (for interior pages)
   -------------------------------------------------------------------------- */
.page-header {
  padding: var(--space-xl) 0;
  text-align: center;
  background-color: var(--color-pine);
}

.page-header__title {
  margin-bottom: var(--space-sm);
}

.page-header__subtitle {
  font-size: 1.125rem;
  color: var(--color-sawdust);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* --------------------------------------------------------------------------
   Image Placeholders (for development)
   -------------------------------------------------------------------------- */
.placeholder-image {
  background: linear-gradient(135deg, var(--color-pine) 0%, var(--color-forest) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-timber);
  font-size: 0.9rem;
  text-align: center;
}

.placeholder-image::before {
  content: attr(data-placeholder);
}
