/* Accent colour — change these values to swap the entire site palette */
:root {
  --accent: #D2A214;
  --accent-hover: #B8900F;
  --accent-light: #D4B074;
  --accent-stars: #D2A214;
  --brass: #B08D57;
  --brass-dark: #8C6F3A;
  --page-bg: #e5e5e5;
  --cta-bg: #d9d9d9;
  --chrome: #3A2A1C;
  --chrome-hover: #4A3728;
}

/* Font assignments */
body, .wsite-elements div.paragraph, .wsite-elements p,
#wsite-content div.paragraph, #wsite-content p,
.blog-sidebar div.paragraph, .blog-sidebar p,
.wsite-form-field label {
  font-family: 'Source Serif 4', Georgia, serif !important;
}
h1, h2, h3, h4, h5, h6,
.wsite-content-title,
.wsite-headline,
#wsite-title,
.wsite-menu-default a,
.wsite-menu a,
.wsite-button-inner,
.wsite-footer-link a,
.galleryCaptionInnerText {
  font-family: 'Outfit', sans-serif !important;
}

/* Heading system */
h1, h1.wsite-content-title {
  font-size: 32px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: #2a2a2a !important;
  margin: 0 0 24px !important;
  line-height: 1.2 !important;
}
h2 {
  font-size: 26px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: #2a2a2a !important;
  margin: 40px 0 16px !important;
  line-height: 1.25 !important;
}
h3 {
  font-size: 20px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.03em !important;
  color: #2a2a2a !important;
  margin: 32px 0 12px !important;
  line-height: 1.3 !important;
}
h4 {
  font-size: 17px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.03em !important;
  color: #2a2a2a !important;
  margin: 24px 0 8px !important;
  line-height: 1.35 !important;
}
h5 {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: #2a2a2a !important;
  margin: 16px 0 6px !important;
  line-height: 1.4 !important;
}
h6 {
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: #2a2a2a !important;
  margin: 12px 0 4px !important;
  line-height: 1.4 !important;
}

/* Body text base */
#wsite-content div.paragraph,
#wsite-content p,
.wsite-elements div.paragraph,
.wsite-elements p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #333 !important;
}

/* Nav menu */
@media (max-width: 992px) {
  .desktop-nav { display: none !important; }
  .paris-header { transition: none !important; }
}
.wsite-menu-default a {
  letter-spacing: 0.03em;
}

/* ── Breadcrumbs ── */
.breadcrumb {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.03em;
  height: 16px;
  margin-bottom: 12px;
  visibility: hidden;
}
.breadcrumb.is-ready { visibility: visible; }
.breadcrumb a {
  color: var(--brass);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--brass-dark); }
.bc-sep {
  margin: 0 8px;
  color: #ccc;
}
.bc-current {
  color: #999;
  text-transform: uppercase;
}

/* Nav reorder: Home(1) About(2) Projects(3) Services(4) News(5) Contact(6) */
.wsite-menu-default { display: flex !important; }
.wsite-menu-default > li:nth-child(1) { order: 1; }
.wsite-menu-default > li:nth-child(2) { order: 2; }
.wsite-menu-default > li:nth-child(3) { order: 4; }
.wsite-menu-default > li:nth-child(4) { order: 5; }
.wsite-menu-default > li:nth-child(5) { order: 3; }
.wsite-menu-default > li:nth-child(6) { order: 6; }

/* ── Homepage featured projects ── */
.home-projects {
  background: #f2f1ee;
  padding: 48px 0 56px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.home-projects h2 {
  margin-bottom: 8px !important;
  text-align: center;
}
.home-projects-subtitle {
  font-family: 'Source Serif 4', Georgia, serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: #666 !important;
  margin-bottom: 32px !important;
  text-align: center;
  max-width: 560px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.home-project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.home-project-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.home-project-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.home-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.home-project-card:hover .home-project-image img {
  transform: scale(1.04);
}
.home-project-info {
  padding: 14px 16px 16px;
}
.home-project-type {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brass);
  border: 1px solid var(--accent-light);
  padding: 2px 8px;
  margin-bottom: 6px;
}
.home-project-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #2a2a2a;
  line-height: 1.3;
}
.home-projects-cta {
  text-align: center;
}
.home-projects-cta .cta-btn-primary {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brass);
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.25s;
}
.home-projects-cta .cta-btn-primary:hover { background: var(--brass-dark); }

@media (max-width: 768px) {
  .home-projects-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .home-projects-grid { grid-template-columns: 1fr; }
}
