/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171717;
}

.hero-title,
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.letter-spacing-sm {
  letter-spacing: 0.12em;
}

.text-accent {
  color: #c26b3b;
}

.bg-light {
  background-color: #f5f3f0 !important;
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.navbar {
  font-size: 0.75rem;
}

.navbar-brand {
  font-size: 1rem;
}

.navbar-nav .nav-link {
  letter-spacing: 0.12em;
}

.navbar-nav .nav-link.active {
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  height: 1px;
  background-color: #171717;
}

/* Hero */
.hero-frame {
  border: 1px solid #e0ddd7;
  background: #faf8f5;
}

.hero-placeholder {
  font-size: 0.8rem;
}

.hero-sketch-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

/* Sections */
.section-eyebrow {
  letter-spacing: 0.14em;
  color: #8c8c8c;
}

.border-top {
  border-color: #e0ddd7 !important;
}

/* Sketch cards */
.sketch-card {
  cursor: default;
}

.sketch-frame {
  background-color: #faf8f5;
  border: 1px solid #e0ddd7;
  overflow: hidden;
}

.sketch-img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sketch-card:hover .sketch-img {
  transform: scale(1.03);
}

.sketch-caption {
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.subtle-shadow {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

/* Artist block */
.artist-initials {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: #c26b3b;
}

/* Contact */
.contact-form .form-label {
  letter-spacing: 0.16em;
}

.contact-form .form-control {
  border-color: #d4d0c8;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: #171717;
}

.social-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background-color: #171717;
}

/* Catalog */
.catalog-body {
  background: linear-gradient(to bottom, #f5f3f0 0, #f5f3f0 40%, #ffffff 40%, #ffffff 100%);
}

.catalog-header {
  padding-top: 7rem !important;
}

/* The Montevidean image – slightly smaller than column */
.montevidean-img-wrap {
  max-width: 85%;
  margin-left: auto;
}

/* Buttons */
.btn {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn-dark {
  background-color: #171717;
  border-color: #171717;
}

.btn-outline-dark {
  border-color: #171717;
  color: #171717;
}

.btn-outline-dark:hover {
  background-color: #171717;
  color: #ffffff;
}

footer {
  background-color: #faf8f5;
}

