/* ============================================================
   FONTS
============================================================ */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/Playfair_Display/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #0D0D0D;
  --bg-section:  #1A1A1A;
  --bg-layer:    #2B2B2B;
  --text:        #E8DCC3;
  --text-dim:    rgba(232, 220, 195, 0.50);
  --text-ghost:  rgba(232, 220, 195, 0.25);
  --gold:        #C2A36B;
  --wine:        #8B1E2D;
  --teal:        #4A6A6A;
  --rule:        rgba(232, 220, 195, 0.14);
  --rule-strong: rgba(232, 220, 195, 0.28);
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

a { color: var(--text); text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ============================================================
   GRAIN OVERLAY
============================================================ */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'%3E%3Canimate attributeName='seed' values='0;5;13;2;19;7;11;3;17;8;14;1;9;16;4;12;6;18;10;15' dur='0.9s' repeatCount='indefinite'/%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.21;
  mix-blend-mode: screen;
}

/* ============================================================
   SITE WRAPPER
============================================================ */
.site-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2.25rem 3.5rem 1.5rem;
  border-bottom: 1px solid var(--rule-strong);
  box-shadow: 0 1px 0 var(--rule);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.active { color: var(--text); }
.nav-link.active::after { transform: scaleX(1); background: var(--text); }

/* ============================================================
   HERO
============================================================ */
.hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem 3.5rem 2.75rem;
  border-bottom: 1px solid var(--rule);
}

.hero-portrait-col {
  flex-shrink: 0;
}

.portrait-frame {
  width: 180px;
  height: 180px;
  position: relative;
  border: 1px solid var(--rule-strong);
  padding: 5px;
  background: var(--bg);
  box-shadow:
    0 0 0 1px var(--bg),
    0 0 0 2px var(--rule-strong),
    inset 0 0 24px rgba(0, 0, 0, 0.6);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.1);
}

.hero-text-col {
  flex: 1;
}

.hero-rule {
  height: 1px;
  background: var(--rule-strong);
  margin: 1.25rem 0;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--text);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-top: 0.9rem;
}

/* ============================================================
   MAIN GRID  (featured | sidebar)
============================================================ */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

/* ============================================================
   FEATURED PROJECT
============================================================ */
.featured-project {
  padding: 2.75rem 3.5rem;
  border-right: 1px solid var(--rule-strong);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.featured-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured-heading-rule {
  flex: 1;
  height: 1px;
  background: var(--rule-strong);
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--text);
}

.featured-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.7;
  padding: 0 1rem;
}

.featured-cta {
  display: flex;
  justify-content: center;
}

.featured-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 0.55rem 2rem;
  transition: color 0.2s, border-color 0.2s;
}

.featured-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.featured-frame {
  border: 1px solid var(--rule-strong);
  padding: 4px;
  background: var(--bg-section);
  margin-top: 0.25rem;
}

.featured-slideshow {
  position: relative;
  width: 100%;
  height: 310px;
}

.featured-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: slide-cycle 12s infinite;
}

.featured-slideshow .slide-1 { animation-delay: 0s; }
.featured-slideshow .slide-2 { animation-delay: 4s; }
.featured-slideshow .slide-3 { animation-delay: 8s; }

@keyframes slide-cycle {
  0%        { opacity: 0; }
  5%        { opacity: 1; }
  28%       { opacity: 1; }
  33%       { opacity: 0; }
  100%      { opacity: 0; }
}

.featured-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.82);
  transition: filter 0.35s ease;
}

.featured-frame:hover .featured-img {
  filter: grayscale(0%) brightness(0.9);
}

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar {
  padding: 2.75rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ---- Reusable block header ---- */
.block-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.block-rule {
  height: 1px;
  background: var(--rule-strong);
  margin-bottom: 0.85rem;
}

/* ---- About ---- */
.about-text {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ---- Tools + Contact ---- */
.tools-contact {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.v-rule {
  background: var(--rule-strong);
  margin: 0 1.75rem;
}

.plain-list--two-col {
  columns: 2;
  column-gap: 1.5rem;
}

.tool-icon {
  display: inline-block;
  width: 1rem;
  font-size: 1rem;
  margin-right: 0.45rem;
  vertical-align: middle;
  color: var(--text-dim);
}

.tool-icon--dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--rule-strong);
  margin-right: 0.75rem;
  vertical-align: middle;
  font-size: 0;
}

.plain-list li {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 2.1;
}

.plain-list a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.plain-list a:hover { color: var(--gold); }

.tag-muted {
  color: var(--text-ghost);
  font-style: italic;
}

/* ---- Project Cards ---- */
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  display: flex;
  flex-direction: column;
}

.card-frame {
  border: 1px solid var(--rule-strong);
  padding: 3px;
  background: var(--bg-section);
  margin-bottom: 0.75rem;
}

.card-img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.72);
  transition: filter 0.3s ease;
}

.card-frame:hover .card-img {
  filter: grayscale(0%) brightness(0.85);
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.card-desc {
  font-size: 0.775rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 0.6rem;
  flex: 1;
}

.card-link {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-ghost);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.card-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  text-align: center;
  padding: 2rem 3.5rem;
  border-top: 1px solid var(--rule);
  box-shadow: 0 -1px 0 var(--rule);
}

.footer-inner {
  max-width: 420px;
  margin: 0 auto;
}

.footer-rule {
  height: 1px;
  background: var(--rule-strong);
  margin-bottom: 1.25rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.775rem;
  font-style: italic;
  color: var(--text-ghost);
}

/* ============================================================
   NEWS GRID  (secondary projects)
============================================================ */
.news-section {
  border-top: 1px solid var(--rule-strong);
  padding: 2.5rem 3.5rem 4rem;
}

.news-section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.news-rule {
  flex: 1;
  height: 1px;
  background: var(--rule-strong);
}

.news-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.news-card {
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

.news-card-frame {
  display: block;
  border: 1px solid var(--rule-strong);
  padding: 3px;
  background: var(--bg-section);
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.news-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.3s ease;
}

.news-card:hover .news-card-img {
  filter: grayscale(0%) contrast(1.05);
}

.news-card-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.news-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.news-card-title a:hover { color: var(--gold); }

.news-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
  flex: 1;
}

.news-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}

.news-card-link:hover { color: var(--gold); }

.news-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Wide card — spans 2 columns, image left / text right */
.news-card--wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 1.25rem;
  align-items: stretch;
}

.news-card--wide .news-card-frame {
  flex: 0 0 42%;
  margin-bottom: 0;
  align-self: stretch;
}

.news-card--wide .news-card-img {
  height: 100%;
  min-height: 200px;
}

/* Tall card — single column with larger image */
.news-card--tall .news-card-img {
  height: 220px;
}

/* ============================================================
   PROJECT ARTICLE
============================================================ */
.brand-name-link {
  text-decoration: none;
  color: inherit;
}

.project-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 3.5rem 5rem;
}

.article-back {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.article-back:hover { color: var(--gold); }

/* Header */
.article-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.article-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.article-rule {
  height: 1px;
  background: var(--rule-strong);
  margin: 0.9rem 0;
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.article-deck {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 640px;
  margin: 1.1rem auto 0;
}

.article-byline {
  margin-top: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.byline-sep { color: var(--text-ghost); }

/* Hero Image */
.article-hero {
  margin-bottom: 3rem;
}

.article-frame {
  border: 1px solid var(--rule-strong);
  padding: 4px;
  background: var(--bg-section);
}

.article-hero-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

.article-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 0.6rem;
}

/* Body */
.article-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--text);
}

.article-lead {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
  color: var(--text);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}

.article-columns {
  column-count: 2;
  column-gap: 2.75rem;
  column-rule: 1px solid var(--rule);
  margin-bottom: 2.5rem;
}

.article-columns p {
  margin-bottom: 1.1em;
  break-inside: avoid;
}

.article-pullquote {
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--rule-strong);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  text-align: center;
  color: var(--text);
  line-height: 1.45;
}

.article-section-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2.5rem 0 1.75rem;
}

.article-section-head .article-rule {
  flex: 1;
  margin: 0;
}

.article-section-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

/* Gallery */
.article-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.article-gallery-item { margin: 0; }

.article-gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* CTA */
.article-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-strong);
  text-align: center;
}

.article-cta-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--rule-strong);
  padding: 0.8rem 2.75rem;
  transition: color 0.2s, border-color 0.2s;
}
.article-cta-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 3.5rem 5rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.contact-header-rule {
  height: 1px;
  background: var(--rule-strong);
  margin: 0.9rem 0;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.contact-deck {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* Body layout */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 0;
  border: 1px solid var(--rule-strong);
}

/* Form column */
.contact-form-col {
  padding: 2.25rem;
  border-right: 1px solid var(--rule-strong);
}

.form-row {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.45rem;
}

.form-input {
  display: block;
  width: 100%;
  background: var(--bg-section);
  border: 1px solid var(--rule-strong);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--text-ghost); }

.form-input:focus { border-color: var(--gold); }

.form-input--error { border-color: var(--wine); }

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.form-submit {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--rule-strong);
  padding: 0.8rem 2.25rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.form-submit:hover:not(:disabled) {
  color: var(--gold);
  border-color: var(--gold);
}

.form-submit:disabled { opacity: 0.5; cursor: default; }

.form-submit-sending { display: none; }

.form-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.form-status--success { color: var(--teal);  display: none; }
.form-status--error   { color: var(--wine);  display: none; }

/* Info column */
.contact-info-col {
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.contact-info-rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 0.7rem;
}

.contact-info-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text);
  word-break: break-all;
}

a.contact-info-value {
  transition: color 0.2s;
}
a.contact-info-value:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .main-grid {
    grid-template-columns: 1fr;
  }

  .featured-project {
    border-right: none;
    border-bottom: 1px solid var(--rule-strong);
  }

  .featured-img { height: 260px; }
  .featured-slideshow { height: 260px; }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem 1.25rem;
  }

  .hero,
  .featured-project,
  .sidebar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .project-article {
    padding: 2rem 1.5rem 3rem;
  }

  .article-hero-img { height: 240px; }
  .article-columns  { column-count: 1; }
  .article-gallery  { grid-template-columns: 1fr; }
  .article-gallery-img { height: 200px; }

  .news-section { padding: 2rem 1.5rem 3rem; }
  .news-grid { grid-template-columns: 1fr 1fr; }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .hero-title { font-size: 1.75rem; }

  .project-cards {
    grid-template-columns: 1fr 1fr;
  }

  .tools-contact {
    grid-template-columns: 1fr;
  }

  .v-rule { display: none; }
}

@media (max-width: 480px) {
  .project-cards {
    grid-template-columns: 1fr;
  }

  .news-grid { grid-template-columns: 1fr; }
}
