
:root {
  --background: #f6f0e7;
  --surface: rgba(255, 250, 244, 0.82);
  --surface-solid: #fffaf4;
  --text: #241f1a;
  --muted: #5f5448;
  --accent: #a05f3c;
  --accent-2: #617a5f;
  --border: rgba(160, 95, 60, 0.22);
  --shadow: 0 18px 46px rgba(55, 37, 20, 0.09);
  --radius: 18px;
  --header-height: 76px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(170, 108, 65, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(97, 122, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf7f2 0%, #f6f0e7 100%);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display:block; width:100%; max-width:100%; height:auto; border-radius:14px; }
.header {
  position: sticky; top:0; z-index:100;
  backdrop-filter: blur(18px);
  background: rgba(251,247,242,0.78);
  border-bottom: 1px solid rgba(160, 95, 60, 0.14);
}
.nav {
  max-width: 1200px; min-height: var(--header-height); margin:0 auto; padding:14px 18px;
  display:grid; grid-template-columns:1fr auto; align-items:center; gap:12px;
}
.logo {
  display:flex; align-items:center; gap:12px; font-size:0.98rem; font-weight:600; letter-spacing:0.03em;
}
.logo img { width:34px; height:34px; color: var(--accent); }
.nav-toggle {
  width:44px; height:44px; padding:0; display:inline-flex; flex-direction:column; justify-content:center; gap:5px; align-items:center;
  border:1px solid var(--border); border-radius:999px; background:rgba(255,250,244,0.9); cursor:pointer;
  box-shadow: 0 8px 20px rgba(55,37,20,0.06);
}
.nav-toggle span { width:18px; height:1.8px; background:var(--text); transition:transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(6.8px) rotate(45deg);} .nav-toggle.is-open span:nth-child(2){opacity:0;} .nav-toggle.is-open span:nth-child(3){ transform:translateY(-6.8px) rotate(-45deg);} 
.site-menu { grid-column:1/-1; display:none; flex-direction:column; gap:8px; padding:8px 0 4px; }
.site-menu.is-open { display:flex; }
nav a {
  display:block; padding:12px 14px; color:var(--text); text-decoration:none; background:rgba(255,250,244,0.72);
  border:1px solid rgba(160,95,60,0.12); border-radius:999px; transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}
nav a:hover, nav a:focus-visible { color:var(--accent); border-color:rgba(160,95,60,0.34); background:rgba(255,255,255,0.95); transform:translateY(-1px); }
.hero { padding:44px 16px 28px; }
.hero__inner {
  max-width:1180px; margin:0 auto; background:linear-gradient(180deg, rgba(255,251,247,0.85), rgba(255,248,240,0.58));
  border:1px solid rgba(160,95,60,0.12); border-radius:28px; box-shadow:var(--shadow); padding:34px 20px;
}
.hero h1 {
  margin:0 auto; max-width:800px; font-family:"Libre Baskerville", serif; font-size:clamp(2rem, 8vw, 3.9rem); line-height:1.22;
  font-weight:400; letter-spacing:-0.025em; text-align:center;
}
.container { width:min(100%, 820px); margin:0 auto; padding:8px 16px 0; }
section { margin-bottom:56px; padding:8px 0; background:transparent; border:0; border-radius:0; box-shadow:none; }
section[id] { scroll-margin-top:96px; }
h2 {
  margin:0 0 14px; font-family:"Libre Baskerville", serif; font-size:clamp(1.35rem, 5vw, 1.75rem); line-height:1.25; font-weight:400;
}
p, ul { margin:0; }
section p + p { margin-top:16px; }
#foto img { margin-top:14px; margin-bottom:2px; }
.bridge { margin:4px auto 42px; max-width:640px; padding:0 16px; font-style:italic; text-align:center; color:var(--muted); }
.archive-image-link { display:block; margin-top:18px; color:inherit; text-decoration:none; border-bottom:0; }
.archive-image-link img { cursor:zoom-in; margin-bottom:10px; box-shadow:var(--shadow); }
.image-caption { display:inline-block; font-size:0.92rem; color:var(--accent); }
.project-button {
  display:flex; align-items:center; gap:16px; margin-top:20px; padding:18px; background:linear-gradient(180deg, #fffaf4, #f9f1e7);
  border:1px solid rgba(160,95,60,0.18); border-radius:20px; box-shadow:var(--shadow); color:var(--text); text-decoration:none;
  transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.project-button:hover, .project-button:focus-visible { transform:translateY(-2px); border-color:rgba(160,95,60,0.35); box-shadow:0 20px 42px rgba(55,37,20,0.10); }
.project-button__icon {
  flex:0 0 52px; width:52px; height:52px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-size:1rem;
  color:var(--surface-solid); background:linear-gradient(135deg, var(--accent), #c08a5b);
}
.project-button__content { display:flex; flex-direction:column; gap:3px; }
.project-button__eyebrow { font-size:.73rem; text-transform:uppercase; letter-spacing:.14em; color:var(--accent); }
.project-button__title { font-family:"Libre Baskerville", serif; font-size:1.45rem; line-height:1.3; }
.project-button__arrow { font-size:.96rem; }
ul { list-style:none; padding:0; }
li + li { margin-top:10px; }
li a, .contact a { color:var(--accent); text-decoration:none; border-bottom:1px solid rgba(160,95,60,0.22); }
li a:hover, .contact a:hover { color:var(--accent-2); }
.footer { padding:10px 16px 34px; }
.footer p { margin:0; text-align:center; color:var(--muted); font-size:.92rem; }
.contact { margin-bottom:26px; }
.lightbox { position:fixed; inset:0; display:none; align-items:center; justify-content:center; padding:16px; z-index:200; }
.lightbox:target { display:flex; }
.lightbox__backdrop { position:absolute; inset:0; background:rgba(24,24,24,.82); border-bottom:0; }
.lightbox__content { position:relative; z-index:1; max-width:min(1080px,94vw); max-height:88vh; }
.lightbox__content img { width:auto; max-width:100%; max-height:88vh; margin:0; border-radius:12px; box-shadow:0 18px 40px rgba(0,0,0,.25); }
.lightbox__close { position:absolute; top:10px; right:10px; width:42px; height:42px; display:flex; align-items:center; justify-content:center; border-radius:999px; background:rgba(255,255,255,.94); color:var(--text); text-decoration:none; border-bottom:0; font-size:1.7rem; line-height:1; }
@media (min-width:700px){ :root{ --header-height:90px;} .hero{padding:58px 24px 34px;} .hero__inner{padding:56px 42px; border-radius:34px;} .container{padding:10px 24px 0;} section{padding:10px 0; margin-bottom:64px;} .bridge{margin-bottom:48px; font-size:1.04rem;} .project-button{padding:22px 24px;} .logo img{width:38px; height:38px;} }
@media (min-width:980px){ .nav{grid-template-columns:auto 1fr; gap:24px; padding:20px 24px;} .nav-toggle{display:none;} .site-menu{grid-column:auto; display:flex; flex-direction:row; justify-content:flex-end; flex-wrap:wrap; gap:10px; padding:0;} nav a{padding:10px 14px; background:transparent;} .hero{padding:72px 32px 40px;} .hero__inner{padding:76px 56px;} .container{width:min(100%, 900px);} section[id]{scroll-margin-top:112px;} }


.logo img { border-radius: 0; }
.logo span { white-space: nowrap; }
.contact {
  margin-top: 12px;
  margin-bottom: 0;
  padding: 34px 22px;
  background: linear-gradient(180deg, #5a3c2b 0%, #4a3123 100%);
  color: #f7efe6;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 18px 42px rgba(48, 28, 17, 0.18);
}
.contact h2 { color: #fff7ef; }
.contact p + p { margin-top: 12px; }
.contact a {
  color: #f6dfc7;
  border-bottom-color: rgba(246, 223, 199, 0.35);
}

.contact-logo {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.contact-logo img {
  height: 120px;
  width: auto;
  opacity: 0.9;
}




.logo img {
  height: 80px;
  width: auto;
}

.logo-text {
  font-weight: 600;
  font-size: 18px;
}
.contact a:hover, .contact a:focus-visible { color: #ffffff; }
.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-email__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 0.95rem;
  line-height: 1;
  flex: 0 0 34px;
}
.footer {
  padding: 16px 16px 34px;
  background: linear-gradient(180deg, #4a3123 0%, #4a3123 100%);
}
.footer p { color: rgba(247, 239, 230, 0.74); }
@media (min-width: 700px) {
  .contact { padding: 40px 30px; }
}

/* CONTACT FULL WIDTH PREMIUM */
.contact {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 80px 24px;
  border-radius: 0;
}

/* center content nicely */
.contact > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* email row */
.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 18px;
}

/* icon style */
.contact-email .icon {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* link */
.contact-email a {
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}

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

/* CONTACT - DARK BROWN */
.contact {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #2a1a12;
  color: #fff;
  padding: 80px 24px;
  border-radius: 0;
}

.contact > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* EMAIL */
.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 18px;
}

.contact-email .icon {
  width: 22px;
  height: 22px;
}

.contact-email a {
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}

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

/* QUOTE STYLE */
.quote {
  font-family: 'Georgia', serif;
  font-size: 22px;
  line-height: 1.6;
  max-width: 700px;
  margin: 40px auto;
  color: #5a3a2a;
  font-style: italic;
  letter-spacing: 0.3px;
}
