body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111;
}
}
h1, h2, h3 {
  font-weight: 500;
}
.site-logo-text:hover {
  opacity: 0.7;
}

p, li {
  font-weight: 300;
}

:root{
  --text:#111; --muted:#666; --bg:#fff; --max:1200px;
  --gap:28px; --gutter:36px;
  --font:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
/* Header layout */
.site-header {
  padding: 30px 60px;
  display: flex;
  justify-content: center; /* keeps logo + nav centered as a group */
  border-bottom: 1px solid #f0f0f0;
}

.site-header .inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Typed name logo */
.site-logo-text {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}

.site-logo-text:hover {
  opacity: 0.7;
}

/* Nav links next to your name */
.nav a {
  margin-left: 24px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111;
}

.nav a:hover {
  opacity: 0.6;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:var(--font);line-height:1.6;}
a{color:inherit;text-decoration:none;border-bottom:1px solid #ccc;}
a:hover{border-color:#111;}
h1,h2,h3{font-weight:700;line-height:1.2;margin:18px 0 6px;}
p{margin:0 0 14px;}

.site-header{
  position: sticky;
  top: 0;
  background: #ffffff;
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 50;
}

.site-header .inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between; /* name left, nav right */
}
.site-header {
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand{
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  border: 0;
}

.nav a{
  margin-left: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  border: 0;
}

.nav a:hover{
  border-bottom: 1px solid #000;
}

.container{max-width:var(--max);margin:0 auto;padding:40px var(--gutter) 80px;}

.hero {
  position: relative;
  margin: 0;
}

/* Full-bleed, full-height hero like Benjamin Hardman */
.hero img {
  width: 100vw;
  height: calc(100vh - 70px); /* 70px ≈ header height; tweak if needed */
  object-fit: cover;
  display: block;
  margin-left: 50%;
  transform: translateX(-50%);
}


.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--gap);}
@media (max-width:900px){.grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){.grid{grid-template-columns:1fr;} }

.card{display:block;border:0;}
.card img{width:100%;height:380px;object-fit:cover;display:block;margin-bottom:8px;}
.card .meta{color:var(--muted);font-size:14px;}

.fullimg{width:100%;height:auto;display:block;margin:0 auto 24px;}
.caption{color:var(--muted);font-size:14px;margin-top:-10px;margin-bottom:20px;}

.site-footer{border-top:1px solid #eee;color:var(--muted);}
.muted{color:var(--muted);}
/* ---------- Hero caption (minimal) ---------- */
.caption {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  color: #f5f5f5;
  font-style: italic;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  padding: 0;
  background: none;
  opacity: 0;
  animation: captionFade 1.2s ease-out 0.6s forwards;
}

@keyframes captionFade {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ---------- Work Grid ---------- */
.work-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:32px;
  margin-top:40px;
}

.work-card{
  position:relative;
  display:block;
  overflow:hidden;
  border:0;
}

.work-card img{
  width:100%;
  height:380px;
  object-fit:cover;
  display:block;
  transition:transform .4s ease, opacity .4s ease;
}

.work-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  padding:14px;
  background:linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
  opacity:0;
  transition:opacity .3s ease;
}

.work-meta{
  color:#fff;
  font-size:13px;
  line-height:1.4;
}

.work-title{
  font-weight:600;
  letter-spacing:.02em;
}

.work-card:hover img{
  transform:scale(1.04);
}

.work-card:hover .work-overlay{
  opacity:1;
}
.work-gallery{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin:32px 0;
}

.work-gallery img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}
/* === Fix Work Thumbnails === */
.work-card img {
  width: 100%;
  height: auto;
  object-fit: contain; /* shows full image, no cropping */
  background-color: #f8f8f8; /* subtle background to fill space */
  border-radius: 4px; /* optional: smooth corners */
  display: block;
  margin: 0 auto;
}
/* === Work Page Grid Layout === */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; /* space between images */
  padding: 60px 10%;
  justify-items: center;
}

.work-card {
  max-width: 600px;
  text-align: center;
}

.work-card img {
  width: 100%;
  height: 300px; /* fixed height for square-like cards */
  object-fit: cover; /* zooms and crops slightly for balance */
  aspect-ratio: 1 / 1; /* keeps it square */
  background-color: #f8f8f8;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 40px 10%;
  justify-items: center;
}
/* Fade-in for work cards on Work page */

.work-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.7s ease forwards;
}

/* Staggered delays so they come in one by one */
.work-card:nth-child(1) {
  animation-delay: 0.05s;
}
.work-card:nth-child(2) {
  animation-delay: 0.15s;
}
.work-card:nth-child(3) {
  animation-delay: 0.25s;
}
.work-card:nth-child(4) {
  animation-delay: 0.35s;
}
/* add more nth-child rules if you add more projects later */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid #eee;
}

.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
}

.brand-signature {
  display: block;
  height: 100px;   /* adjust: try 72–96px */
  width: auto;
  opacity: 0;
  animation: fadeIn 0.9s ease-out forwards;
  animation-delay: 0.15s;
}

/* simple fade-in keyframes if not already defined */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- Work page gallery grid ----- */

.work-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  margin-top: 30px;
}

.work-gallery img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
  background-color: #f5f5f5;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.work-gallery {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-top: 30px;
}

.work-gallery img {
  width: 100%;
  height: 360px;       /* adjust: 320–420px depending on style */
  object-fit: cover;   /* fills nicely without distortion */
  border-radius: 4px;
  background-color: #f7f7f7;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}


.thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 10px;
}

.thumbnails img {
  height: 80px;      /* small, neat thumbnails */
  width: auto;       /* NO cropping */
  cursor: pointer;
  opacity: 0.7;
  border-radius: 3px;
}

.thumbnails img:hover {
  opacity: 1;
}
.gallery {
  max-width: 900px;
  margin: 0 auto;
}

.main-image {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}


/* ---------- Project page gallery styles ---------- */

.project-image-viewer {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}

.project-image-viewer img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

/* Thumbnail Row */
.thumbnail-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnail-row img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.thumbnail-row img:hover,
.thumbnail-row img.active-thumb {
  opacity: 1;
  transform: scale(1.05);
}

/* Navigation arrows */
.viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #444;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.viewer-nav.left {
  left: -50px;
}

.viewer-nav.right {
  right: -50px;
}

.viewer-nav:hover {
  color: #000;
}
.image-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}

.nav-arrow {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #444;
  transition: color 0.2s, transform 0.2s;
}

.nav-arrow:hover {
  color: black;
  transform: scale(1.15);
}
.main-image {
  width: 70%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}
/* ----- Work detail gallery layout ----- */

.gallery {
  max-width: 900px;
  margin: 0 auto 2rem;
}

/* main image size – adjust these if you want it bigger/smaller */
.main-image {
  width: 70%;
  max-width: 900px;
  max-height: 550px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 4px;
}

/* wrapper so we can position arrows */
.main-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* left/right arrow buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}


/* optional: highlight current thumbnail */
.thumbnails img.active {
  outline: 2px solid #333;
}
/* ---------- Single work page gallery ---------- */

.gallery {
  max-width: 900px;        /* keeps everything in a nice column */
  margin: 40px auto;
}


.main-image {
  max-width: 100%;
  max-height: 60vh;        /* same height limit as wrapper */
  height: auto;
  object-fit: contain;     /* no cropping – whole artwork fits */
}

/* arrows */


.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

/* thumbnails row */

.thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;   /* crops them into neat little squares */
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.thumbnails img:hover {
  opacity: 1;
}

/* mobile tweak */

@media (max-width: 768px) {
  .main-image-wrapper {
    max-height: 50vh;
  }
  .thumbnails img {
    width: 60px;
    height: 60px;
  }
}
/* ===== Unified work-page gallery ===== */

.gallery {
  max-width: 900px;
  margin: 40px auto 30px;
}

/* Main image wrapper + arrows */
.main-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  width: 100%;
  max-width: 650px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

/* Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #000;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 0 8px;
  -webkit-appearance: none;
  appearance: none;
}

.gallery-nav:focus {
  outline: none;
}

.gallery-nav.prev {
  left: -40px;
}

.gallery-nav.next {
  right: -40px;
}

/* Thumbnail row */
.thumbnails {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.thumbnails img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Highlight current thumbnail (optional – if your JS adds .active) */
.thumbnails img.active {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ----- Mobile tweaks ----- */
@media (max-width: 768px) {
  .gallery {
    margin: 30px auto 20px;
  }

  .main-image {
    max-width: 100%;
    max-height: 380px;
  }

  .gallery-nav.prev {
    left: 4px;
  }

  .gallery-nav.next {
    right: 4px;
  }

  .thumbnails img {
    width: 70px;
    height: 70px;
  }
}
/* ===== Unified work-page gallery (stable arrows) ===== */

.gallery {
  max-width: 900px;
  margin: 40px auto 30px;
}

/* --- MAIN IMAGE FIXED CONTAINER --- */
.main-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 520px;             /* << FIXED HEIGHT (desktop) */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;      /* keeps image centered vertically */
  overflow: hidden;         /* prevents image overflow */
}

/* Image scales to fit */
.main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* --- ARROWS (now always centered vertically) --- */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);   /* ALWAYS center vertically */
  background: none;
  border: none;
  color: #333;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

/* --- THUMBNAILS --- */
.thumbnails {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.thumbnails img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.75;
  transition: all 0.2s ease;
}

.thumbnails img.active,
.thumbnails img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ----- MOBILE ----- */
@media (max-width: 768px) {

  .main-image-wrapper {
    height: 360px;       /* smaller fixed height for phones */
  }

  .gallery-nav.prev { left: 4px; }
  .gallery-nav.next { right: 4px; }

  .gallery-nav {
    font-size: 32px;
    color: #000;         /* no blue arrows on iPhones */
  }

  .thumbnails img {
    width: 70px;
    height: 70px;
  }
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: black;      /* arrow color */
  font-size: 32px;   /* arrow size */
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.gallery-nav.prev {
  left: -4px;   /* adjust left arrow position */
}

.gallery-nav.next {
  right: -4px;  /* adjust right arrow position */
}

.gallery-nav:hover {
  color: #555;   /* slight hover change */
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
}
/* ---------- Work page grid thumbnails stay as they are ----------
   (you already have .work-gallery styles above; we don't touch them)
   The lightbox below only affects the popup view
----------------------------------------------------------------- */

/* Overlay that covers the page */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* grey/black fade */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

/* When visible */
.lightbox-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Box that holds big image + caption */
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Big image – full artwork, no cropping */
.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  background: #111;
}

/* Caption under big image */
.lightbox-caption {
  margin-top: 12px;
  color: #f5f5f5;
  font-size: 0.9rem;
  text-align: center;
}

/* Close “x” */
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 32px;
  cursor: pointer;
}

/* Left/right arrows inside overlay */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #f5f5f5;
  font-size: 40px;
  cursor: pointer;
  padding: 0 10px;
}

.lightbox-arrow.left {
  left: 40px;
}

.lightbox-arrow.right {
  right: 40px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  color: #ffffff;
}

/* Small tweak for mobile: bring arrows closer in */
@media (max-width: 768px) {
  .lightbox-arrow.left {
    left: 12px;
  }
  .lightbox-arrow.right {
    right: 12px;
  }
}
.work-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* --- Refined airy grid for work pages --- */

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;                 /* a bit more breathing room */
  margin: 40px auto 50px;
}

/* subtle entrance animation */
@keyframes thumbFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.work-gallery img {
  width: 100%;
  height: 320px;             /* slightly shorter for a lighter feel */
  object-fit: cover;
  border-radius: 8px;        /* softer corners */
  cursor: zoom-in;
  animation: thumbFadeIn 0.45s ease-out both;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

/* hover = subtle, not gimmicky */
.work-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
  opacity: 0.95;
}

/* mobile tweak: full width, a bit taller */
@media (max-width: 768px) {
  .work-gallery {
    gap: 16px;
    margin: 24px auto 40px;
  }

  .work-gallery img {
    height: 260px;
    border-radius: 6px;
  }
}
/* ------------------------------
   Contact Page
--------------------------------*/

.contact-intro {
  max-width: 550px;
  margin: 20px auto 30px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  color: #333;
}

.contact-email {
  text-align: center;
  margin: 10px 0 10px;
}

.contact-email a {
  font-size: 1.15rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.contact-email a:hover {
  border-bottom: 1px solid #000;
}

.contact-location {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 6px;
}
/* ---------------- Ellen-style Contact Page ---------------- */

.page-contact .contact-ellen {
  max-width: 520px;
  margin: 120px auto 150px;
  text-align: center;
}

.contact-ellen-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 32px;
}

.page-contact h1 {
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.contact-ellen-line {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-ellen-email a {
  font-size: 1.05rem;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}

.contact-ellen-email a:hover {
  border-bottom-color: #000;
}

.contact-ellen-location {
  color: #777;
  font-size: 0.9rem;
  margin-top: 8px;
  margin-bottom: 30px;
}

.contact-ellen-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

.contact-ellen-social a {
  color: #222;
  text-decoration: none;
  font-size: 0.9rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-ellen-social a:hover {
  border-bottom-color: #aaa;
}

/* Mobile */
@media (max-width: 640px) {
  .page-contact .contact-ellen {
    margin: 80px 20px 120px;
  }

  .contact-ellen-photo {
    width: 150px;
    height: 150px;
  }
}
/* ===== Contact page ===== */

.contact-page {
  max-width: 1000px;
  margin: 0 auto 120px;
}

/* Two-column hero (image left, text right) */
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 80px 24px 40px;
}

.contact-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

/* Override default h1 + text just for contact */
.contact-text h1 {
  font-size: 24px;
  font-weight: 500;  /* less bold */
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
  text-align: left;
}

.contact-text p {
  margin: 0 0 8px;
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

.contact-email a {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.contact-location {
  font-size: 13px;
  color: #888;
  margin-top: 8px;
}

/* Grey band with social links */
.contact-links {
  background: #f5f5f5;
  margin-top: 60px;
  padding: 32px 24px 40px;
}

.contact-links-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-links h2 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #666;
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-icons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.contact-icons a:hover {
  text-decoration: underline;
}

.contact-icons .icon {
  font-size: 16px;
}

/* Mobile layout */
@media (max-width: 768px) {
  .contact-hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 32px;
  }

  .contact-image img {
    max-width: 100%;
  }
}
/* Official SVG icon styling */
.icon-svg {
  width: 20px;
  height: 20px;
  fill: #333;
  display: inline-block;
  vertical-align: middle;
}

.contact-icons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.contact-icons a:hover .icon-svg {
  fill: #000;
}
h1 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.contact-text {
  margin-top: 10px;
  max-width: 360px;
  font-size: 15px;
  color: #444;
  line-height: 1.55;
}

.contact-email a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  color: #111;
}

.contact-email a:hover {
  border-color: #000;
}

.contact-location {
  font-size: 14px;
  color: #777;
  margin-top: -6px;
}
/* ---- Contact Page Layout ---- */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.contact-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
  object-fit: cover;
}

.contact-info h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.contact-text {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin-bottom: 25px;
}

.contact-email a {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #bbb;
}

.contact-email a:hover {
  border-color: #000;
}

.contact-location {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

/* ---- Social Section ---- */

.contact-social-section {
  margin-top: 60px;
  padding: 40px 0;
  background: #f4f4f4;
  text-align: center;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icon img {
  width: 26px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.social-icon img:hover {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-text {
    margin: 0 auto;
  }

  .contact-image img {
    margin: 0 auto 30px;
  }
}
/* ---------- Contact page layout ---------- */

.contact-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.contact-info {
  text-align: left;
}

.contact-info h1 {
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.contact-text {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  margin-bottom: 22px;
}

.contact-email a {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #bbb;
}

.contact-email a:hover {
  border-color: #000;
}

.contact-location {
  font-size: 13px;         /* smaller than before */
  color: #888;
  margin-top: 6px;
}

/* ---------- Social strip ---------- */

.contact-social-section {
  margin-top: 40px;
  padding: 32px 0;
  background: #f4f4f4;
}

.contact-social {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-svg {
  width: 24px;
  height: 24px;
  stroke: #444;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease, transform 0.2s ease;
}

.social-icon:hover .icon-svg {
  stroke: #000;
  transform: translateY(-1px);
}

/* Mobile tweaks */

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

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

  .contact-text {
    margin: 0 auto 22px;
  }

  .contact-image img {
    margin: 0 auto;
  }
}
.site-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #111;
  text-decoration: none;
}
